From 3e74de26d16780e626241e0c42313fcb37b91cf2 Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 21 Dec 2025 13:55:01 +0100 Subject: c: keyword aliases Some linux headers use __signed__ for whatever reason.. this is a general fix for those alternate keyword --- c/lex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/lex.h') diff --git a/c/lex.h b/c/lex.h index 20b1bbd..c4c38e8 100644 --- a/c/lex.h +++ b/c/lex.h @@ -44,7 +44,7 @@ enum toktag { /* single-character tokens' tag value is the character itself */ TKSETSHL, /* <<= */ TKSETSHR, /* >>= */ TKIDENT = 0x80, -#define _(kw, stdc) TKW##kw, +#define _(kw, stdc, ...) TKW##kw, #include "keywords.def" #undef _ NTOKTAG, -- cgit v1.2.3