diff options
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -7,11 +7,17 @@ | |||
7 | #ifndef llex_h | 7 | #ifndef llex_h |
8 | #define llex_h | 8 | #define llex_h |
9 | 9 | ||
10 | #include <limits.h> | ||
11 | |||
10 | #include "lobject.h" | 12 | #include "lobject.h" |
11 | #include "lzio.h" | 13 | #include "lzio.h" |
12 | 14 | ||
13 | 15 | ||
14 | #define FIRST_RESERVED 257 | 16 | /* |
17 | ** Single-char tokens (terminal symbols) are represented by their own | ||
18 | ** numeric code. Other tokens start at the following value. | ||
19 | */ | ||
20 | #define FIRST_RESERVED (UCHAR_MAX + 1) | ||
15 | 21 | ||
16 | 22 | ||
17 | #if !defined(LUA_ENV) | 23 | #if !defined(LUA_ENV) |