aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
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 <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_]);