aboutsummaryrefslogtreecommitdiff
path: root/interpreter/eval.h
diff options
context:
space:
mode:
authorCamil Staps2016-10-12 09:26:57 +0200
committerCamil Staps2016-10-12 09:26:57 +0200
commitf3f81123c2082672dd5bbd47520bd5fdce9a066a (patch)
tree1907f61551badef1f1ae2bb61b7acbe90f930816 /interpreter/eval.h
parentFix initialisation warning (diff)
Make debug graphs a command line option (-g)
Diffstat (limited to 'interpreter/eval.h')
-rw-r--r--interpreter/eval.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/interpreter/eval.h b/interpreter/eval.h
index 3561965..7afe56e 100644
--- a/interpreter/eval.h
+++ b/interpreter/eval.h
@@ -3,6 +3,10 @@
#include "syntax.h"
-struct expression *eval_main(struct fuspel*);
+struct expression *eval_main(struct fuspel*
+#ifdef _FUSPEL_DEBUG
+ , bool debug_graphs
+#endif
+ );
#endif