diff options
author | charnier <charnier@FreeBSD.org> | 1998-06-15 07:00:01 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1998-06-15 07:00:01 +0000 |
commit | d1aa93470ac100b023bf6ee323b0aa6b912b042e (patch) | |
tree | 5d640da38dec3a84704157cc97bc34bfa117894a | |
parent | c21f0cc56cfd3c4de7eb2cd4ff2a3116332ab714 (diff) | |
download | FreeBSD-src-d1aa93470ac100b023bf6ee323b0aa6b912b042e.zip FreeBSD-src-d1aa93470ac100b023bf6ee323b0aa6b912b042e.tar.gz |
Add rcsid. Remove unused #includes.
-rw-r--r-- | sbin/dumpfs/dumpfs.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sbin/dumpfs/dumpfs.c b/sbin/dumpfs/dumpfs.c index 7216999..3aaea24 100644 --- a/sbin/dumpfs/dumpfs.c +++ b/sbin/dumpfs/dumpfs.c @@ -32,28 +32,29 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1983, 1992, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)dumpfs.c 8.5 (Berkeley) 4/29/95"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ #include <sys/param.h> #include <sys/time.h> -#include <ufs/ufs/dinode.h> #include <ufs/ffs/fs.h> #include <err.h> -#include <errno.h> #include <fcntl.h> #include <fstab.h> #include <stdio.h> #include <stdlib.h> -#include <string.h> #include <unistd.h> union { |