aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-10 00:03:21 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-03-10 00:03:21 -0500
commita33f73061776d6814f67fecd230c0706bc1ff10c (patch)
tree7f47f83f783f5b08a02bdd940988d9637102e6e4 /ast.h
parentb639f01294f8c528ad0597a179f7e426bccdfb80 (diff)
Rearranging some files
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ast.h b/ast.h
index 847f2224..3ee7f61d 100644
--- a/ast.h
+++ b/ast.h
@@ -4,8 +4,8 @@
#include <stdlib.h>
#include <printf.h>
-#include "files.h"
-#include "util.h"
+#include "builtins/files.h"
+#include "builtins/util.h"
#define NewAST(_file, _start, _end, ast_tag, ...) (new(ast_t, .file=_file, .start=_start, .end=_end,\
.tag=ast_tag, .__data.ast_tag={__VA_ARGS__}))