CVSROOT: /cvs Module name: src Changes by: [email protected] 2014/01/08 14:40:25
Modified files:
usr.bin/yacc : closure.c defs.h lalr.c lr0.c main.c mkpar.c
output.c reader.c symtab.c verbose.c
Log message:
Remove CALLOC, MALLOC, FREE and REALLOC macros and just call calloc(),
nalloc(), free() and realloc() directly. The macros were casting
to the wrong (pre-C89) types and there is no need for them in a C89
world. OK matthew@
