summaryrefslogtreecommitdiff
path: root/symtab.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-04-22 22:11:22 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-04-22 22:11:22 +0000
commit4ecea33a988c00caa98cacf934e61e361d94e8af (patch)
tree7089d85dfa0daa5568799f671cfb9924f1012710 /symtab.c
parente0ae66db632ac7c7773c8b85754bfc135f5bdbd5 (diff)
Notes
Diffstat (limited to 'symtab.c')
-rw-r--r--symtab.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/symtab.c b/symtab.c
index 9839180936c1..e7f6fade0aec 100644
--- a/symtab.c
+++ b/symtab.c
@@ -1,4 +1,4 @@
-/* $Id: symtab.c,v 1.10 2012/05/26 15:16:12 tom Exp $ */
+/* $Id: symtab.c,v 1.11 2014/03/26 00:17:09 Tom.Shields Exp $ */
#include "defs.h"
@@ -48,6 +48,12 @@ make_bucket(const char *name)
bp->prec = 0;
bp->class = UNKNOWN;
bp->assoc = TOKEN;
+#if defined(YYBTYACC)
+ bp->args = -1;
+ bp->argnames = 0;
+ bp->argtags = 0;
+ bp->destructor = 0;
+#endif
strcpy(bp->name, name);
return (bp);