diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-20 16:51:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-20 16:51:33 +0000 |
commit | 97a68190c4791a956b4009ed9f1fa8d3db1d9a8b (patch) | |
tree | be47db5e8dd3c3af2a64dc18ad68b5e667cd5d1e /usr.bin | |
parent | 1c0b32d41cb46768feb15eb04e6809c3bd74378a (diff) |
use new LINTED keyword for a global which is perhaps not used, but must
be there; ok cloder
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/yacc/skeleton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/yacc/skeleton.c b/usr.bin/yacc/skeleton.c index 0d44795d7fb..1df001637b0 100644 --- a/usr.bin/yacc/skeleton.c +++ b/usr.bin/yacc/skeleton.c @@ -1,4 +1,4 @@ -/* $OpenBSD: skeleton.c,v 1.25 2006/04/20 03:07:36 deraadt Exp $ */ +/* $OpenBSD: skeleton.c,v 1.26 2006/04/20 16:51:32 deraadt Exp $ */ /* $NetBSD: skeleton.c,v 1.10 1996/03/25 00:36:18 mrg Exp $ */ /* @@ -63,7 +63,7 @@ char *banner[] = "#if __GNUC__ >= 2", " __attribute__ ((unused))", "#endif /* __GNUC__ >= 2 */", - " = \"$OpenBSD: skeleton.c,v 1.25 2006/04/20 03:07:36 deraadt Exp $\";", + " = \"$OpenBSD: skeleton.c,v 1.26 2006/04/20 16:51:32 deraadt Exp $\";", "#endif", "#include <stdlib.h>", "#define YYBYACC 1", @@ -127,7 +127,7 @@ char *header[] = "#endif", "#endif", "#define YYINITSTACKSIZE 200", - "/* LINTED YYDEBUG */", + "/* LINTUSED */", "int yydebug;", "int yynerrs;", "int yyerrflag;", |