summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apl9.h b/apl9.h
index f30c6e8..64f7eba 100644
--- a/apl9.h
+++ b/apl9.h
@@ -99,13 +99,16 @@ typedef Array* (*fnmonad)(Array*);
typedef Array* (*fndyad)(Array*, Array*);
/* Function prototypes for the different source files */
+/* main.c */
+Datum *evalline(Rune *);
+
/* print.c */
Rune *ppdatum(Datum);
Rune *ppdatums(Datum *, int);
Rune *pparray(Array *);
/* lexer.c */
-Statement *lexline(Rune *, Symtab *);
+Statement *lexline(Rune *);
/* array.c */
Array *mkarray(int, int, int);