aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index a395a75c..9d1604cc 100644
--- a/compile.c
+++ b/compile.c
@@ -12,7 +12,7 @@
#include "structs.h"
#include "environment.h"
#include "typecheck.h"
-#include "util.h"
+#include "builtins/util.h"
CORD compile_type_ast(type_ast_t *t)
{
@@ -1518,7 +1518,7 @@ CORD compile_type_info(env_t *env, type_t *t)
module_code_t compile_file(ast_t *ast)
{
env_t *env = new_compilation_unit();
- CORD_appendf(&env->code->imports, "#include <tomo.h>\n");
+ CORD_appendf(&env->code->imports, "#include <tomo/tomo.h>\n");
for (ast_list_t *stmt = Match(ast, Block)->statements; stmt; stmt = stmt->next) {
bind_statement(env, stmt->ast);