core allocation macros added

This commit is contained in:
bal 1984-11-30 10:25:21 +00:00
parent 1e69d3458c
commit 90df1e5b9a

View file

@ -20,6 +20,15 @@ num_p numhash[NNUMHASH];
#define newsym() (sym_p) newstruct(sym)
#define newprc() (prc_p) newstruct(prc)
#define newnum() (num_p) newstruct(num)
#define oldsym(x) oldstruct(sym,x)
#define oldprc(x) oldstruct(prc,x)
#define oldnum(x) oldstruct(num,x)
/* instr_lab */