aboutsummaryrefslogtreecommitdiff
path: root/src/typecheck.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-17 15:27:34 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-17 15:27:34 -0400
commit4188d627c6869cb6b443ae3b6dece40486f4a039 (patch)
tree018d309e84cd752c93a3b55770fcd979e0d35c54 /src/typecheck.c
parent82466a2f9507ad6991c5a275d2be97691ef58db6 (diff)
Bugfix: added support for Tomo identifiers that are C keywords
Diffstat (limited to 'src/typecheck.c')
-rw-r--r--src/typecheck.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/typecheck.c b/src/typecheck.c
index d151c511..ba30931e 100644
--- a/src/typecheck.c
+++ b/src/typecheck.c
@@ -11,6 +11,7 @@
#include "ast.h"
#include "environment.h"
#include "modules.h"
+#include "naming.h"
#include "parse.h"
#include "stdlib/paths.h"
#include "stdlib/tables.h"