diff options
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/parse.c b/src/parse.c index 4bbda03..de3f910 100644 --- a/src/parse.c +++ b/src/parse.c @@ -4,6 +4,9 @@ #include "parse.h" #include "util.h" +static int parse_expr(struct lexer *lexer, struct expr *e); +static int parse_if(struct lexer *lexer, struct ast_if *cnd); +static int parse_stmt(struct lexer *lexer, struct ast_stmt *stmt, int nosemi); static int |