aboutsummaryrefslogtreecommitdiff
path: root/src/compile/statements.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 16:06:58 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 16:06:58 -0400
commit2bc8e5f74cdfca319f04ac2e6c13d04c05059137 (patch)
tree4e3960e6a9f97573c9a63d6cbd74ea67bf20ffeb /src/compile/statements.c
parent40e332fdbde4cc082ba9d0e4f5e8c53612bfec68 (diff)
Deprecate `extern` keyword
Diffstat (limited to 'src/compile/statements.c')
-rw-r--r--src/compile/statements.c1
1 files changed, 0 insertions, 1 deletions
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;