From 5c5187f0ffaf3fa9af1611b00b3923ccf55f13c3 Mon Sep 17 00:00:00 2001 From: BrainStackOverFlow <48990146+BrainStackOverFlow@users.noreply.github.com> Date: Thu, 17 Jul 2025 13:06:48 +0300 Subject: [PATCH] Fix actually use specified include dirs --- src/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse.c b/src/parse.c index 4b793ac..6cca1a1 100644 --- a/src/parse.c +++ b/src/parse.c @@ -1511,7 +1511,7 @@ static void skim_chunk(Parser *P, int isTopLevel) { FILE *f = NULL; for(const char **importPaths = ntc_get_import_paths(); *importPaths; importPaths++) { - char *path2 = malp("tests/%s.nct", path); + char *path2 = malp("%s/%s.nct", *importPaths, path); f = fopen(path2, "rb");