diff options
author | 1996-12-12 08:19:25 +0000 | |
---|---|---|
committer | 1996-12-12 08:19:25 +0000 | |
commit | 95f70db1388c2bc04bdcd6c3ee9d7a0b0804fe85 (patch) | |
tree | 3c0cae4b80cfe829e288363c00c10564fc20f6f0 | |
parent | types.h for u_char (diff) | |
download | wireguard-openbsd-95f70db1388c2bc04bdcd6c3ee9d7a0b0804fe85.tar.xz wireguard-openbsd-95f70db1388c2bc04bdcd6c3ee9d7a0b0804fe85.zip |
<sys/stat.h> missed.
we've got ctype.h macros in stand.h!
-rw-r--r-- | sys/lib/libsa/cd9660.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/lib/libsa/cd9660.c b/sys/lib/libsa/cd9660.c index 0d0704f34c3..2ee8ac91f0f 100644 --- a/sys/lib/libsa/cd9660.c +++ b/sys/lib/libsa/cd9660.c @@ -1,3 +1,4 @@ +/* $OpenBSD: cd9660.c,v 1.2 1996/12/12 08:19:25 mickey Exp $ */ /* $NetBSD: cd9660.c,v 1.1 1996/09/30 16:01:19 ws Exp $ */ /* @@ -38,6 +39,7 @@ * blocksizes other than 2048 bytes, multi-extent files, etc. */ #include <sys/param.h> +#include <sys/stat.h> #include <lib/libkern/libkern.h> @@ -87,13 +89,6 @@ struct ptable_ent { #define cdb2devb(bno) ((bno) * ISO_DEFAULT_BLOCK_SIZE / DEV_BSIZE) static int -toupper(c) - int c; -{ - return c >= 'a' && c <= 'z' ? c - 'a' + 'A' : c; -} - -static int pnmatch(path, pp) char *path; struct ptable_ent *pp; |