aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-24 16:06:49 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-24 16:06:49 -0500
commitc2228bf9861b38f2514d0cc8a270754bb3a03dd7 (patch)
tree494d52f6e596dd00ff6912c28c4a5dfab5a8423c /compile.c
parentdbad340c29e5911119db33d6043cc502dbe40ed1 (diff)
Rename 'nextlang'->'tomo'
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 67b5aa78..b5d2b03c 100644
--- a/compile.c
+++ b/compile.c
@@ -950,7 +950,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 \"nextlang.h\"\n");
+ CORD_appendf(&env->code->imports, "#include \"tomo.h\"\n");
for (ast_list_t *stmt = Match(ast, Block)->statements; stmt; stmt = stmt->next) {
bind_statement(env, stmt->ast);