about summary refs log tree commit diff
path: root/boot/catboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'boot/catboot.c')
-rw-r--r--boot/catboot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/boot/catboot.c b/boot/catboot.c
index 79a5e2b..7ab9c4f 100644
--- a/boot/catboot.c
+++ b/boot/catboot.c
@@ -24,6 +24,7 @@
 #include "lex.c"
 #include "tree.c"
 #include "parse.c"
+#include "visit.c"
 
 const ascii*
 read_file(const ascii* path)
@@ -81,6 +82,8 @@ main(const int32 argc, const ascii* argv[])
     }
 
     tree_print(&tree);
+    printf("\n");
+    tree_printer(&tree);
 
     return EXIT_SUCCESS;
 }