aboutsummaryrefslogtreecommitdiffhomepage
path: root/c.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2024-04-09 07:56:36 +0200
committerlemon <lsof@mailbox.org>2024-04-09 10:06:59 +0200
commit9b45d155c3a71eaf798fde2b516dfd1a0f66257e (patch)
tree76153133f2f0c442f82d046677c96abd1d1432f5 /c.c
parent274935a984141f623a364737766e0eae26954c82 (diff)
frontend: basic #include
Diffstat (limited to 'c.c')
-rw-r--r--c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c.c b/c.c
index 92075a3..b09fc08 100644
--- a/c.c
+++ b/c.c
@@ -3428,7 +3428,7 @@ ccomp(const char *file)
static union { char m[sizeof(struct arena) + N]; struct arena *_align; } amem[2];
struct comp cm = {0};
- initlexer(&cm.lx, file, &cm.exarena);
+ initlexer(&cm.lx, NULL, file, &cm.exarena);
cm.fnarena = (void *)amem[0].m;
cm.fnarena->cap = N;
cm.exarena = (void *)amem[1].m;