From de59dbd1773dff06051b7b604977bcb2803ada4f Mon Sep 17 00:00:00 2001 From: Flavian Kaufmann Date: Fri, 23 May 2025 11:25:29 +0200 Subject: [cleanup] ast --- include/interpreter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/interpreter.h') diff --git a/include/interpreter.h b/include/interpreter.h index 09f1e18..5eff23f 100644 --- a/include/interpreter.h +++ b/include/interpreter.h @@ -16,7 +16,7 @@ void context_set_var(context_t context, const char *name, int value); void context_print_var_table(context_t context); void context_print_proc_table(context_t context); -int interp_ast(context_t context, ASTNode *node); +int interp_ast(context_t context, IMP_ASTNode *node); int interp_file (context_t context, const char *path); int interp_str (context_t context, const char *str); -- cgit v1.2.3