diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-15 13:03:11 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-15 13:03:11 +0000 |
commit | d464a1d3a62d620b6336131c355467bdc273e3c5 (patch) | |
tree | f1e495cbff84173fea0bb238bfb01e509ab524fe /apl9.h | |
parent | 65f7f8c1f339e11ed7867eb1c19fa4692976221a (diff) |
Rework printer to add vertical padding too
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -156,6 +156,9 @@ void freesymtab(Symtab *); vlong globalIO(void); /* memory.c */ +void *emalloc(ulong); +void checkmem(char *); + Array *allocarray(int, int, int); void freearray(Array *); void incref(Array *); @@ -193,6 +196,7 @@ Array *opOver(Datum *, Datum *, Array *, Array *); /* Global variables */ extern int traceeval; /* eval.c */ +extern int debugmem; /* memory.c */ extern Rune *errormsg; /* eval.c */ extern int datasizes[]; /* array.c */ extern Rune primfuncnames[]; /* functions.c */ @@ -205,4 +209,4 @@ extern opmonad monadoperatordefs[]; /* operators.c */ extern opdyad dyadoperatordefs[]; /* operators.c */ extern Symtab *globalsymtab; /* symbol.c */ extern Symtab *currentsymtab; /* symbol.c */ -extern int alloccounts; /* memory.c */
\ No newline at end of file +extern int alloccounts; /* memory.c */ |