summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/scope.c b/scope.c
index 0a05bae..1b116b7 100644
--- a/scope.c
+++ b/scope.c
@@ -75,6 +75,8 @@ static void block_exit(Block *b, Statement *stmts) {
if (stmt->kind == STMT_DECL) {
Declaration *decl = &stmt->decl;
remove_ident_decls(b, decl);
+ } else if (stmt->kind == STMT_INCLUDE) {
+ block_exit(b, stmt->inc.stmts);
}
}
}