diff options
author | 1996-03-31 04:56:00 +0000 | |
---|---|---|
committer | 1996-03-31 04:56:00 +0000 | |
commit | 6402e213041a7c03bc842c5740ed9dfbbbe870cc (patch) | |
tree | 536decd1dd7b7899ff46a0fffd16cd776dcaf013 /usr.bin/yacc/mkpar.c | |
parent | From NetBSD: merge of 960317 (diff) | |
download | wireguard-openbsd-6402e213041a7c03bc842c5740ed9dfbbbe870cc.tar.xz wireguard-openbsd-6402e213041a7c03bc842c5740ed9dfbbbe870cc.zip |
Fix 960317 NetBSD merge error. Merge caused local OpenBSD mod lossage.
NetBSD's byacc %expect mods are buggy and don't handle syntax or semantic
errors. Additionally, they do not mimic the BISON behavior they try to
emulate. Our local OpenBSD %expect mods are much better.
Diffstat (limited to 'usr.bin/yacc/mkpar.c')
-rw-r--r-- | usr.bin/yacc/mkpar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/yacc/mkpar.c b/usr.bin/yacc/mkpar.c index b66784be599..34df17afc77 100644 --- a/usr.bin/yacc/mkpar.c +++ b/usr.bin/yacc/mkpar.c @@ -1,5 +1,7 @@ +/* $OpenBSD: mkpar.c,v 1.3 1996/03/31 04:56:02 etheisen Exp $ */ + #ifndef lint -static char rcsid[] = "$Id: mkpar.c,v 1.2 1996/02/04 08:37:01 etheisen Exp $"; +static char rcsid[] = "$Id: mkpar.c,v 1.3 1996/03/31 04:56:02 etheisen Exp $"; #endif /* not lint */ #include "defs.h" |