From 991245b69c53b1e2f708af34b6f829182ebf5cf2 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 18 Aug 2025 03:59:58 +0900 Subject: refactor: define va_start() as macro instead of special form --- tokenize.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'tokenize.c') diff --git a/tokenize.c b/tokenize.c index d6bd7a6..9b4042d 100644 --- a/tokenize.c +++ b/tokenize.c @@ -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; -- cgit v1.2.3-70-g09d2