summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apl9.h b/apl9.h
index d86d659..acbfcbb 100644
--- a/apl9.h
+++ b/apl9.h
@@ -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 *);