From 8483d3c4456108cfaf469d4d3867608458f39138 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Sat, 23 May 2026 19:03:15 -0400 Subject: core: parser: Add initial preprocessing stubs Signed-off-by: Chloe M. --- core/cescal.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'core/cescal.c') diff --git a/core/cescal.c b/core/cescal.c index 0121389..c41f7cd 100644 --- a/core/cescal.c +++ b/core/cescal.c @@ -29,8 +29,10 @@ compile(const char *pathname) return -1; } - if (parser_parse(&st) < 0) { - return -1; + for (int i = 0; i < 2; ++i) { + if (parser_parse(&st) < 0) { + return -1; + } } state_close(&st); -- cgit v1.2.3