diff options
Diffstat (limited to 'interpreter/eval.h')
-rw-r--r-- | interpreter/eval.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/interpreter/eval.h b/interpreter/eval.h index 121f3be..9dd1ce0 100644 --- a/interpreter/eval.h +++ b/interpreter/eval.h @@ -1,9 +1,11 @@ #ifndef _H_FUSPEL_EVAL #define _H_FUSPEL_EVAL +#include <stdio.h> + #include "syntax.h" -struct expression *eval_main(struct fuspel* +struct expression *eval_main(FILE *out, struct fuspel* #ifdef FUSPEL_DEBUG , bool debug_graphs #endif |