aboutsummaryrefslogtreecommitdiff
path: root/src/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.y')
-rw-r--r--src/parser.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.y b/src/parser.y
index ad08cf8..433a5ab 100644
--- a/src/parser.y
+++ b/src/parser.y
@@ -610,6 +610,7 @@ proc
: id func_sign body {
$$ = gen_proc($1, $2, $3);
ast_set_flags($$, $2->flags);
+ ast_set_flags($3, AST_FLAG_UNHYGIENIC);
}
| "extern" id func_sign {
/* todo check that we don't have a variadic function */