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 --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io.c') diff --git a/io.c b/io.c index 35da15a..9b57133 100644 --- a/io.c +++ b/io.c @@ -592,7 +592,7 @@ vbfmt(struct wbuf *out, const char *fmt, va_list ap) default: if (tok->t >= TKWBEGIN_ && tok->t <= TKWEND_) { static const char *tab[] = { - #define _(kw, c) #kw, + #define _(kw, c, ...) #kw, #include "c/keywords.def" #undef _ }; -- cgit v1.2.3