diff options
author | David Malone <dwmalone@FreeBSD.org> | 2001-12-10 21:13:08 +0000 |
---|---|---|
committer | David Malone <dwmalone@FreeBSD.org> | 2001-12-10 21:13:08 +0000 |
commit | 9f5b04e925d068b053cc41bae3d3c25a5325062c (patch) | |
tree | 1442452df82ec8f2c59ad6b71923e5a41a2c26fa /usr.bin/rev | |
parent | 071087f3d79814821e1c6b70569177f2583903a8 (diff) | |
download | src-test2-9f5b04e925d068b053cc41bae3d3c25a5325062c.tar.gz src-test2-9f5b04e925d068b053cc41bae3d3c25a5325062c.zip |
Notes
Diffstat (limited to 'usr.bin/rev')
-rw-r--r-- | usr.bin/rev/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/rev/rev.c | 11 |
2 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/rev/Makefile b/usr.bin/rev/Makefile index ef9723fa3d01..adfc4e160d96 100644 --- a/usr.bin/rev/Makefile +++ b/usr.bin/rev/Makefile @@ -1,5 +1,5 @@ -# $FreeBSD$ # @(#)Makefile 8.1 (Berkeley) 6/9/93 +# $FreeBSD$ PROG= rev WARNS?= 2 diff --git a/usr.bin/rev/rev.c b/usr.bin/rev/rev.c index c023d8e55e40..50921e7b4665 100644 --- a/usr.bin/rev/rev.c +++ b/usr.bin/rev/rev.c @@ -31,19 +31,20 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> - -__FBSDID("$FreeBSD$"); - #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1987, 1992, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ +#if 0 #ifndef lint -static const char sccsid[] = "@(#)rev.c 8.3 (Berkeley) 5/4/95"; +static char sccsid[] = "@(#)rev.c 8.3 (Berkeley) 5/4/95"; #endif /* not lint */ +#endif + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/types.h> |