diff options
Diffstat (limited to 'core/parser.c')
| -rw-r--r-- | core/parser.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/parser.c b/core/parser.c index 684a1ff..5e86283 100644 --- a/core/parser.c +++ b/core/parser.c @@ -45,7 +45,11 @@ static const char *toktab[] = { [TT_PUB] = qtok("pub"), [TT_PROC] = qtok("proc"), [TT_BEGIN] = qtok("begin"), - [TT_END] = qtok("end") + [TT_END] = qtok("end"), + [TT_U8] = qtok("u8"), + [TT_U16] = qtok("u16"), + [TT_U32] = qtok("u32"), + [TT_U64] = qtok("u64") }; int |
