diff options
author | Chad David <davidc@FreeBSD.org> | 2003-02-12 18:03:55 +0000 |
---|---|---|
committer | Chad David <davidc@FreeBSD.org> | 2003-02-12 18:03:55 +0000 |
commit | c979c169a7defcb67232e2c2508dd787f12ec9da (patch) | |
tree | d633ab5a6ba034428ef92ba87137bfea9504335b | |
parent | 96365d3dcf28d659361c7e55f446e55f4288b83a (diff) |
Notes
-rw-r--r-- | usr.bin/yacc/skeleton.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/yacc/skeleton.c b/usr.bin/yacc/skeleton.c index 6beccf59df7d1..f765c912f5c8e 100644 --- a/usr.bin/yacc/skeleton.c +++ b/usr.bin/yacc/skeleton.c @@ -59,11 +59,14 @@ __FBSDID("$FreeBSD$"); const char *banner[] = { + "#include <stdlib.h>", "#ifndef lint", + "#ifdef __unused", + "__unused", + "#endif", "static char const ", "yyrcsid[] = \"$FreeBSD$\";", "#endif", - "#include <stdlib.h>", "#define YYBYACC 1", "#define YYMAJOR 1", "#define YYMINOR 9", |