aboutsummaryrefslogtreecommitdiff
path: root/interpreter/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'interpreter/print.h')
-rw-r--r--interpreter/print.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/interpreter/print.h b/interpreter/print.h
index 047a7f7..cc191b9 100644
--- a/interpreter/print.h
+++ b/interpreter/print.h
@@ -16,7 +16,12 @@ void print_fuspel(fuspel*);
void print_node(struct node*);
#ifdef _FUSPEL_DEBUG
-void print_node_to_file(struct node*, FILE*);
+struct visited_nodes {
+ struct node* node;
+ struct visited_nodes* next;
+};
+
+void print_node_to_file(struct node*, FILE*, struct visited_nodes*);
#endif
#endif