aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/decl.c b/decl.c
index 4c89753..1699e3e 100644
--- a/decl.c
+++ b/decl.c
@@ -18,6 +18,7 @@
#include "token.h"
#include "type.h"
+struct declaration builtinvalist = {.kind = DECLTYPE, .type = &typevalist};
struct declaration builtinvastart = {.kind = DECLBUILTIN};
struct declaration builtinvaarg = {.kind = DECLBUILTIN};
struct declaration builtinvaend = {.kind = DECLBUILTIN};
@@ -309,11 +310,6 @@ declspecs(struct scope *s, enum storageclass *sc, enum funcspecifier *fs, int *a
case T_ATOMIC:
fatal("_Atomic is not yet supported");
break;
- case T__BUILTIN_VA_LIST:
- t = &typevalist;
- ++ntypes;
- next();
- break;
case TSTRUCT:
case TUNION:
case TENUM: