diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-09 19:53:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-11-09 19:53:18 +0000 |
commit | d890ebb64c4ea4a99761bc6176df859460e1fc1c (patch) | |
tree | d775d5c908812fefa0244956ed1dd4fdc8d1028a /sbin/fsck_ffs/pass5.c | |
parent | d5b0c2d47c3219c3a450e1ec62c0382c2c0dd77b (diff) |
Don't include <ufs/ffs/ffs_extern.h>. fsck_ffs now compiles.
Diffstat (limited to 'sbin/fsck_ffs/pass5.c')
-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" |