summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-20 23:07:08 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-20 23:07:08 +0000
commit230aac3c644df9d80c8eba507e6bc7c710b26b52 (patch)
treea440f14305fe71e148e6835f319869e5f04c16c4 /apl9.h
parent56ddfd33a5564afefdf264c91f2eca2ac3c37e08 (diff)
Implement better dnfs semantics
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 *);