diff options
Diffstat (limited to 'include/lexer')
-rw-r--r-- | include/lexer/token.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/lexer/token.h b/include/lexer/token.h index 9400c01..134582a 100644 --- a/include/lexer/token.h +++ b/include/lexer/token.h @@ -34,12 +34,13 @@ #include "hash.h" enum token_kind { - TK_UNKNOWN, - TK_EOF, + TOK_UNKNOWN, + TOK_EOF, - TK_IDENTIFIER, - TK_VOID, - TK_INT + TOK_IDENTIFIER, + + TOK_VOID, + TOK_INT }; #define TF_NONE 0 |