diff options
| author | 2024-04-09 07:56:36 +0200 | |
|---|---|---|
| committer | 2024-04-09 10:06:59 +0200 | |
| commit | 9b45d155c3a71eaf798fde2b516dfd1a0f66257e (patch) | |
| tree | 76153133f2f0c442f82d046677c96abd1d1432f5 /c.c | |
| parent | 274935a984141f623a364737766e0eae26954c82 (diff) | |
frontend: basic #include
Diffstat (limited to 'c.c')
| -rw-r--r-- | c.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |