aboutsummaryrefslogtreecommitdiff
path: root/tccgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'tccgen.c')
-rw-r--r--tccgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tccgen.c b/tccgen.c
index abeb924..6447eb5 100644
--- a/tccgen.c
+++ b/tccgen.c
@@ -6334,7 +6334,7 @@ static int decl0(int l, int is_for_loop_init)
}
/* special test for old K&R protos without explicit int
type. Only accepted when defining global data */
- if (l == VT_LOCAL || tok < TOK_DEFINE)
+ if (l == VT_LOCAL || tok < TOK_UIDENT)
break;
btype.t = VT_INT;
}