diff options
Diffstat (limited to 'bootstrap/all.h')
| -rw-r--r-- | bootstrap/all.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/all.h b/bootstrap/all.h index aba2bc3..8c61d5e 100644 --- a/bootstrap/all.h +++ b/bootstrap/all.h @@ -61,7 +61,8 @@ enum toktype { #define KWTK(kw) TKkw_##kw, LIST_KEYWORDS(KWTK) #undef KWTK - TKintlit, + NUM_KEYWORDS, + TKintlit = -100, TKflolit, TKboolit, TKstrlit, @@ -74,7 +75,6 @@ enum toktype { TKexpr, TKeof, }; -#define NUM_KEYWORDS TKintlit struct tok { int t; |