From 90df1e5b9a590de0ab7dfbcdbe1a98d2e08de788 Mon Sep 17 00:00:00 2001 From: bal Date: Fri, 30 Nov 1984 10:25:21 +0000 Subject: [PATCH] core allocation macros added --- util/ego/ic/ic_lookup.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/util/ego/ic/ic_lookup.c b/util/ego/ic/ic_lookup.c index 69f2f4d38..6c0d2b80b 100644 --- a/util/ego/ic/ic_lookup.c +++ b/util/ego/ic/ic_lookup.c @@ -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 */