diff options
| author | 2025-10-19 08:09:09 +0200 | |
|---|---|---|
| committer | 2025-10-19 08:09:09 +0200 | |
| commit | dea8fd171acb54b6d9685422d5e391fb55074008 (patch) | |
| tree | 2c149892f35c5183c9b2a1da4ab437228dc432ef /io.c | |
| parent | 3437945692f2b87883a4f066473c9deed50f25f5 (diff) | |
Organize source files into directories
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#include "lex.h" +#include "c/lex.h" #include <limits.h> #include <stdlib.h> #include <string.h> @@ -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_]); |