diff options
Diffstat (limited to 'compile.h')
| -rw-r--r-- | compile.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -5,9 +5,10 @@ #include <stdio.h> #include "util.h" +#include "environment.h" -CORD compile_type(type_ast_t *t); -CORD compile(ast_t *ast); -CORD compile_statement(ast_t *ast); +CORD compile_type(env_t *env, type_ast_t *t); +CORD compile(env_t *env, ast_t *ast); +CORD compile_statement(env_t *env, ast_t *ast); // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
