From 2bc8e5f74cdfca319f04ac2e6c13d04c05059137 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 16:06:58 -0400 Subject: Deprecate `extern` keyword --- src/ast.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index a545e68c..53685b28 100644 --- a/src/ast.h +++ b/src/ast.h @@ -264,7 +264,6 @@ typedef enum { Pass, Defer, Return, - Extern, StructDef, EnumDef, LangDef, @@ -415,10 +414,6 @@ struct ast_s { struct { ast_t *value; } Return; - struct { - const char *name; - type_ast_t *type; - } Extern; struct { const char *name; arg_ast_t *fields; -- cgit v1.2.3