aboutsummaryrefslogtreecommitdiff
path: root/src/compile/promotion.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-24 17:07:41 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-24 17:07:41 -0400
commit476bacc27671de92e8fdbc5b2a904bbf8bc80377 (patch)
tree035183cccc5aa42cb5885dbbccdb6f9cf4f2aa23 /src/compile/promotion.c
parente4d080f598b8528d5200deccde279ff02ac5750e (diff)
More splitting out into separate files.
Diffstat (limited to 'src/compile/promotion.c')
-rw-r--r--src/compile/promotion.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compile/promotion.c b/src/compile/promotion.c
index fbac5888..30c8f69b 100644
--- a/src/compile/promotion.c
+++ b/src/compile/promotion.c
@@ -6,12 +6,15 @@
#include "../stdlib/text.h"
#include "../typecheck.h"
#include "../types.h"
+#include "assignments.h"
+#include "functions.h"
#include "integers.h"
#include "lists.h"
#include "optionals.h"
#include "pointers.h"
#include "sets.h"
#include "tables.h"
+#include "types.h"
static Text_t quoted_str(const char *str) { return Text$quoted(Text$from_str(str), false, Text("\"")); }