diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-08-18 03:59:58 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-18 03:59:58 +0900 |
| commit | 991245b69c53b1e2f708af34b6f829182ebf5cf2 (patch) | |
| tree | 59ac5aa154ed0c60d036bacba1fdb9171f18fb94 /tokenize.c | |
| parent | 2a7e1667f70c5381d3b939324cc647e51134b15c (diff) | |
| download | ducc-991245b69c53b1e2f708af34b6f829182ebf5cf2.tar.gz ducc-991245b69c53b1e2f708af34b6f829182ebf5cf2.tar.zst ducc-991245b69c53b1e2f708af34b6f829182ebf5cf2.zip | |
refactor: define va_start() as macro instead of special form
Diffstat (limited to 'tokenize.c')
| -rw-r--r-- | tokenize.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -121,9 +121,6 @@ void tokenize_all(Lexer* l) { tok->kind = TokenKind_keyword__Complex; } else if (strcmp(pp_tok->value.string, "_Imaginary") == 0) { tok->kind = TokenKind_keyword__Imaginary; - } else if (strcmp(pp_tok->value.string, "va_start") == 0) { - tok->kind = TokenKind_va_start; - tok->value = pp_tok->value; } else { tok->kind = TokenKind_ident; tok->value = pp_tok->value; |
