aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-12-21 13:55:01 +0100
committerlemon <lsof@mailbox.org>2025-12-21 16:44:43 +0100
commit3e74de26d16780e626241e0c42313fcb37b91cf2 (patch)
tree76092ff61192c0f8e36d7bd50c58fc7b57b7999b /io.c
parent201f015408a160583b6644c0c3ea07b3139c8d91 (diff)
c: keyword aliases
Some linux headers use __signed__ for whatever reason.. this is a general fix for those alternate keyword
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
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 _
};