diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-04-22 22:11:22 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-04-22 22:11:22 +0000 |
commit | 4ecea33a988c00caa98cacf934e61e361d94e8af (patch) | |
tree | 7089d85dfa0daa5568799f671cfb9924f1012710 /symtab.c | |
parent | e0ae66db632ac7c7773c8b85754bfc135f5bdbd5 (diff) |
Notes
Diffstat (limited to 'symtab.c')
-rw-r--r-- | symtab.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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); |