aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-10-23 17:48:22 +0200
committerlemon <lsof@mailbox.org>2025-10-23 17:49:47 +0200
commitd5f154ed760d0929530fdce5409d5772a708ea05 (patch)
treebc5b9742cda8016173ab539813f48e522ef264b1 /io.c
parent1182280d291467f21052050ae9131810f8889635 (diff)
c: make builtin va_list an opaque struct
Diffstat (limited to 'io.c')
-rw-r--r--io.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/io.c b/io.c
index 53cb6af..77380c3 100644
--- a/io.c
+++ b/io.c
@@ -210,7 +210,6 @@ pritypebefore(struct wbuf *buf, union type ty, int qual)
case TYFLOAT: s = "float"; goto Prim;
case TYDOUBLE: s = "double"; goto Prim;
case TYLDOUBLE:s = "long double"; goto Prim;
- case TYVALIST: s = "va_list"; goto Prim;
case TYPTR:
chld = typechild(ty);
n = pritypebefore(buf, chld, ty.flag & TFCHLDQUAL);