aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/yacc
diff options
context:
space:
mode:
authorTim Vanderhoek <hoek@FreeBSD.org>1999-07-30 12:53:21 +0000
committerTim Vanderhoek <hoek@FreeBSD.org>1999-07-30 12:53:21 +0000
commit892d5804bb017b93e92322b4cbf7d538e44fc795 (patch)
tree55ccbb550a3aa38474abec578cdd14ce11342aac /usr.bin/yacc
parent0ef6a34a34f74af72219409fab5f8d3f6e9b0dcc (diff)
downloadsrc-892d5804bb017b93e92322b4cbf7d538e44fc795.tar.gz
src-892d5804bb017b93e92322b4cbf7d538e44fc795.zip
Don't output rcsid into the output parser. It may have already been
defined in an input file such as src/bin/sh/arith.y. #if 0 it out. I did not add $Id$ back into the comment header (as removed from last commit).
Notes
Notes: svn path=/head/; revision=49274
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r--usr.bin/yacc/skeleton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/yacc/skeleton.c b/usr.bin/yacc/skeleton.c
index 8fbfc43c8a11..c17d919f2f26 100644
--- a/usr.bin/yacc/skeleton.c
+++ b/usr.bin/yacc/skeleton.c
@@ -54,9 +54,9 @@ static char const sccsid[] = "@(#)skeleton.c 5.8 (Berkeley) 4/29/95";
char *banner[] =
{
- "#ifndef lint",
+ "#if 0",
"static char const ",
- "rcsid[] = \"$Id: skeleton.c,v 1.18 1999/07/29 09:59:06 obrien Exp $\";",
+ "rcsid[] = \"$Id: skeleton.c,v 1.19 1999/07/30 06:40:00 obrien Exp $\";",
"#endif",
"#include <stdlib.h>",
"#define YYBYACC 1",