From bfb3b69be15d378137415be04926b4ca3cec5316 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Sun, 26 Apr 2026 22:48:31 +0200 Subject: [PATCH] fix: add util.c to source files --- v0/include.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v0/include.mk b/v0/include.mk index bc390ad..b81c728 100644 --- a/v0/include.mk +++ b/v0/include.mk @@ -1,4 +1,4 @@ -V0_SRC := v0/main.c v0/token.c v0/parser.c v0/log.c +V0_SRC := v0/main.c v0/util.c v0/token.c v0/parser.c v0/log.c # V0_TEST must only include `v0/test.c` itself, as all other test C–source files are # included directly into `v0/test.c` using `#include "test_xyz.c"`.