diff options
author | markm <markm@FreeBSD.org> | 2001-12-12 00:01:16 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-12 00:01:16 +0000 |
commit | d7e4e2a0061bbd394792c02327366ea30a0479fa (patch) | |
tree | 96ce037e3a144b5cdc2eae1f0c1e956dfd7bd60c /usr.bin/tail/misc.c | |
parent | 52b8de5a2e91a1e44b08fea4b94402bcee10ff88 (diff) | |
download | FreeBSD-src-d7e4e2a0061bbd394792c02327366ea30a0479fa.zip FreeBSD-src-d7e4e2a0061bbd394792c02327366ea30a0479fa.tar.gz |
WARNS=2 fixes, use __FBSDID().
Diffstat (limited to 'usr.bin/tail/misc.c')
-rw-r--r-- | usr.bin/tail/misc.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/usr.bin/tail/misc.c b/usr.bin/tail/misc.c index 275acb9..6d0ecdb 100644 --- a/usr.bin/tail/misc.c +++ b/usr.bin/tail/misc.c @@ -34,23 +34,25 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #ifndef lint -#if 0 -static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; +static const char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ #include <sys/types.h> #include <sys/stat.h> #include <sys/mman.h> + +#include <err.h> #include <errno.h> -#include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <err.h> +#include <unistd.h> + #include "extern.h" void |