diff options
author | eric <eric@FreeBSD.org> | 2001-06-15 23:25:22 +0000 |
---|---|---|
committer | eric <eric@FreeBSD.org> | 2001-06-15 23:25:22 +0000 |
commit | b7ccfec9a33ce452bdb7f2e4a450a2d9d79d3258 (patch) | |
tree | 155c64644acf896109faeef56e45e4cd4eb89c94 /usr.bin/enigma | |
parent | 6c0b683445bcb0c4262928ed96c5600046fd89c4 (diff) | |
download | FreeBSD-src-b7ccfec9a33ce452bdb7f2e4a450a2d9d79d3258.zip FreeBSD-src-b7ccfec9a33ce452bdb7f2e4a450a2d9d79d3258.tar.gz |
Remove unwanted CFLAGS, and add a CVS id.
Diffstat (limited to 'usr.bin/enigma')
-rw-r--r-- | usr.bin/enigma/Makefile | 1 | ||||
-rw-r--r-- | usr.bin/enigma/enigma.c | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/enigma/Makefile b/usr.bin/enigma/Makefile index 74a1a69..878b4d1 100644 --- a/usr.bin/enigma/Makefile +++ b/usr.bin/enigma/Makefile @@ -1,7 +1,6 @@ # $FreeBSD$ PROG= enigma -CFLAGS+=-Wall LINKS= ${BINDIR}/enigma ${BINDIR}/crypt MLINKS= enigma.1 crypt.1 diff --git a/usr.bin/enigma/enigma.c b/usr.bin/enigma/enigma.c index 3b1560c..87ed653 100644 --- a/usr.bin/enigma/enigma.c +++ b/usr.bin/enigma/enigma.c @@ -10,6 +10,11 @@ * Upgraded to function properly on 64-bit machines. */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ + #include <sys/types.h> #include <sys/wait.h> |