aboutsummaryrefslogtreecommitdiff
path: root/interpreter/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/print.h')
-rw-r--r--interpreter/print.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/interpreter/print.h b/interpreter/print.h
index 5909087..544786f 100644
--- a/interpreter/print.h
+++ b/interpreter/print.h
@@ -2,6 +2,7 @@
#define _H_PRINT
#include "syntax.h"
+#include "graphs.h"
void print_token(token*);
void print_token_list(token_list*);
@@ -10,4 +11,6 @@ void print_expression(expression*);
void print_rewrite_rule(rewrite_rule*);
void print_fuspel(fuspel*);
+void print_node(struct node*);
+
#endif