aboutsummaryrefslogtreecommitdiff
path: root/tree.c
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-08-18 18:31:36 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-08-18 18:31:36 -0400
commit3f1cee416602070225b81deb8c2222a5324f8204 (patch)
treeaa9578558d176ea5bebd796503fcb1944f82e0ca /tree.c
parentb4d095d8616c8a5f2d85f8dc91b8429b0a7108a3 (diff)
Fix clean up header includes
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tree.c b/tree.c
index daad71f..1874712 100644
--- a/tree.c
+++ b/tree.c
@@ -1,14 +1,14 @@
+#include "tree.h"
+
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
-#include "node.h"
-#include "tree.h"
-#include "scope.h"
-#include "sem_check.h"
#include "y.tab.h"
+#include "scope.h"
#include "pc.h"
+#include "sem_check.h"
/* parse tree funcs */
ptree* mktree(type, l, r)