diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-01-22 20:25:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-01-22 20:25:09 +0000 |
commit | 43f555732483fd1b60a70968b71d3a01ef7d446a (patch) | |
tree | 9ac7c483eb8edd88cdb16e5f49b4c235f85c0eba /sbin/mount_ffs | |
parent | a9e755d6a11ddb61c8eb50d4307c9611f1951a53 (diff) |
remove extra externs not needed because of unistd.h (rest of tree will be done later.. contact me if you want to help)
Diffstat (limited to 'sbin/mount_ffs')
-rw-r--r-- | sbin/mount_ffs/mount_ffs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/mount_ffs/mount_ffs.c b/sbin/mount_ffs/mount_ffs.c index 2f0e2d073e9..ff6b53e5d8c 100644 --- a/sbin/mount_ffs/mount_ffs.c +++ b/sbin/mount_ffs/mount_ffs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_ffs.c,v 1.8 1997/08/20 05:34:24 millert Exp $ */ +/* $OpenBSD: mount_ffs.c,v 1.9 2000/01/22 20:25:01 deraadt Exp $ */ /* $NetBSD: mount_ffs.c,v 1.3 1996/04/13 01:31:19 jtc Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount_ufs.c 8.2 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$OpenBSD: mount_ffs.c,v 1.8 1997/08/20 05:34:24 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount_ffs.c,v 1.9 2000/01/22 20:25:01 deraadt Exp $"; #endif #endif /* not lint */ @@ -76,7 +76,6 @@ main(argc, argv) int argc; char * const argv[]; { - extern int optreset; struct ufs_args args; /* XXX ffs_args */ int ch, mntflags; char *fs_name, *errcause; |