Remove CALLOC, MALLOC, FREE and REALLOC macros and just call calloc(),
authormillert <millert@openbsd.org>
Wed, 8 Jan 2014 21:40:25 +0000 (21:40 +0000)
committermillert <millert@openbsd.org>
Wed, 8 Jan 2014 21:40:25 +0000 (21:40 +0000)
commitef3564504a4572c5023c4439091728db2adce3e8
treed12f389091c957b0e360ff9e917b1a111f4225f4
parent479af9e19a58dbc2b147a9a466e230493ce66e76
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@
usr.bin/yacc/closure.c
usr.bin/yacc/defs.h
usr.bin/yacc/lalr.c
usr.bin/yacc/lr0.c
usr.bin/yacc/main.c
usr.bin/yacc/mkpar.c
usr.bin/yacc/output.c
usr.bin/yacc/reader.c
usr.bin/yacc/symtab.c
usr.bin/yacc/verbose.c