diff options
Diffstat (limited to 'apl9.h')
-rw-r--r-- | apl9.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -188,7 +188,7 @@ struct DfnFrame /* Function prototypes for the different source files */ /* main.c */ -Datum *evalline(Rune *, int); +Datum *evalline(Rune *, Biobuf *, int); Rune *prompt(Rune *); /* print.c */ @@ -199,7 +199,8 @@ Rune *ppoperator(Operator); Rune *ppfunction(Function); /* lexer.c */ -Statement *lexline(Rune *, int); +Statement *lexlinebio(Biobuf *, int); +Statement *lexlinestr(Rune *, int); /* array.c */ Array *mkscalarint(vlong); |