diff options
author | 1997-11-09 19:53:17 +0000 | |
---|---|---|
committer | 1997-11-09 19:53:17 +0000 | |
commit | eb79c59f42b4b6d9736aa4297d48a8f50ee16c52 (patch) | |
tree | 32a64fca5d32a318bb6410903b8927ec1992b85b | |
parent | isonum_722 and isonum_732 are now in isofs/cd9660/iso.h (diff) | |
download | wireguard-openbsd-eb79c59f42b4b6d9736aa4297d48a8f50ee16c52.tar.xz wireguard-openbsd-eb79c59f42b4b6d9736aa4297d48a8f50ee16c52.zip |
Don't include <ufs/ffs/ffs_extern.h>. fsck_ffs now compiles.
-rw-r--r-- | sbin/fsck_ffs/pass5.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/pass5.c b/sbin/fsck_ffs/pass5.c index 5d17b4806e9..dbfbe4a9f6d 100644 --- a/sbin/fsck_ffs/pass5.c +++ b/sbin/fsck_ffs/pass5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pass5.c,v 1.5 1997/10/06 20:22:35 deraadt Exp $ */ +/* $OpenBSD: pass5.c,v 1.6 1997/11/09 19:53:17 millert Exp $ */ /* $NetBSD: pass5.c,v 1.16 1996/09/27 22:45:18 christos Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)pass5.c 8.6 (Berkeley) 11/30/94"; #else -static char rcsid[] = "$OpenBSD: pass5.c,v 1.5 1997/10/06 20:22:35 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: pass5.c,v 1.6 1997/11/09 19:53:17 millert Exp $"; #endif #endif /* not lint */ @@ -46,7 +46,6 @@ static char rcsid[] = "$OpenBSD: pass5.c,v 1.5 1997/10/06 20:22:35 deraadt Exp $ #include <sys/time.h> #include <ufs/ufs/dinode.h> #include <ufs/ffs/fs.h> -#include <ufs/ffs/ffs_extern.h> #include <string.h> #include "fsutil.h" |