diff options
author | 1997-11-09 19:37:20 +0000 | |
---|---|---|
committer | 1997-11-09 19:37:20 +0000 | |
commit | 7d044f66f2001c49afae5aa88183bbdeaafdfe9c (patch) | |
tree | 1059418b3f47919d3418b0bb66754c953959449d | |
parent | also report udp PCB cache misses. (diff) | |
download | wireguard-openbsd-7d044f66f2001c49afae5aa88183bbdeaafdfe9c.tar.xz wireguard-openbsd-7d044f66f2001c49afae5aa88183bbdeaafdfe9c.zip |
isonum_722 and isonum_732 are now in isofs/cd9660/iso.h
-rw-r--r-- | sys/lib/libsa/cd9660.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/sys/lib/libsa/cd9660.c b/sys/lib/libsa/cd9660.c index a0a6add33c5..9acd4156a3a 100644 --- a/sys/lib/libsa/cd9660.c +++ b/sys/lib/libsa/cd9660.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660.c,v 1.5 1997/10/06 20:20:18 deraadt Exp $ */ +/* $OpenBSD: cd9660.c,v 1.6 1997/11/09 19:37:20 millert Exp $ */ /* $NetBSD: cd9660.c,v 1.1 1996/09/30 16:01:19 ws Exp $ */ /* @@ -52,20 +52,6 @@ struct proc; struct statfs; struct ucred; #include <isofs/cd9660/iso.h> -/* These once were in iso.h, but got deleted??? */ -extern __inline int -isonum_722(p) - unsigned char *p; -{ - return ((char)*p << 8)|p[1]; -} - -extern __inline int -isonum_732(p) - unsigned char *p; -{ - return (*p << 24)|(p[1] << 16)|(p[2] << 8)|p[3]; -} #include "stand.h" #include "cd9660.h" |