From dea8fd171acb54b6d9685422d5e391fb55074008 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 19 Oct 2025 08:09:09 +0200 Subject: Organize source files into directories --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index f28499d..b6729ee 100644 --- a/io.c +++ b/io.c @@ -1,4 +1,4 @@ -#include "lex.h" +#include "c/lex.h" #include #include #include @@ -576,7 +576,7 @@ vbfmt(struct wbuf *out, const char *fmt, va_list ap) if (tok->t >= TKWBEGIN_ && tok->t <= TKWEND_) { static const char *tab[] = { #define _(kw, c) #kw, - #include "keywords.def" + #include "c/keywords.def" #undef _ }; n += bfmt(buf, "%s", tab[tok->t - TKWBEGIN_]); -- cgit v1.2.3