aboutsummaryrefslogtreecommitdiffhomepage
path: root/c/lex.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/lex.h')
-rw-r--r--c/lex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/lex.h b/c/lex.h
index 20b1bbd..c4c38e8 100644
--- a/c/lex.h
+++ b/c/lex.h
@@ -44,7 +44,7 @@ enum toktag { /* single-character tokens' tag value is the character itself */
TKSETSHL, /* <<= */
TKSETSHR, /* >>= */
TKIDENT = 0x80,
-#define _(kw, stdc) TKW##kw,
+#define _(kw, stdc, ...) TKW##kw,
#include "keywords.def"
#undef _
NTOKTAG,