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/compile/statements.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/compile/statements.c') diff --git a/src/compile/statements.c b/src/compile/statements.c index db8f5b1f..a7705adc 100644 --- a/src/compile/statements.c +++ b/src/compile/statements.c @@ -166,7 +166,6 @@ static Text_t _compile_statement(env_t *env, ast_t *ast) { ast_t *loop = WrapAST(ast, For, .vars = comp->vars, .iter = comp->iter, .body = body); return compile_statement(env, loop); } - case Extern: return EMPTY_TEXT; case InlineCCode: { DeclareMatch(inline_code, ast, InlineCCode); Text_t code = EMPTY_TEXT; -- cgit v1.2.3