diff options
Diffstat (limited to 'core/parser.c')
| -rw-r--r-- | core/parser.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/parser.c b/core/parser.c index 6720d84..58a1bc5 100644 --- a/core/parser.c +++ b/core/parser.c @@ -39,6 +39,11 @@ static const char *toktab[] = { [TT_COMMA] = qtok(","), [TT_COLON] = qtok(":"), [TT_ARROW] = qtok("->"), + [TT_PLUS] = qtok("+"), + [TT_MINUS] = qtok("-"), + [TT_SLASH] = qtok("/"), + [TT_STAR] = qtok("*"), + [TT_EQUALS] = qtok("="), [TT_DEFINE] = qtok("#define"), [TT_IFNDEF] = qtok("#ifndef"), [TT_IFDEF] = qtok("#ifdef"), |
