diff options
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -143,7 +143,7 @@ struct QuadnameDef /* Function prototypes for the different source files */ /* main.c */ -Datum *evalline(Rune *); +Datum *evalline(Rune *, int); Rune *prompt(Rune *); /* print.c */ @@ -153,7 +153,7 @@ Rune *pparray(Array *); Rune *ppoperator(Operator); /* lexer.c */ -Statement *lexline(Rune *); +Statement *lexline(Rune *, int); /* array.c */ Array *mkscalarint(vlong); @@ -172,7 +172,7 @@ int comparearray(Array *, Array *, int); Array *fillelement(Array *); /* eval.c */ -Datum *eval(Statement *); +Datum *eval(Statement *, int); /* symbol.c */ Symbol *getsym(Symtab *, Rune *); |