aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/tcctest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tcctest.c b/tests/tcctest.c
index 629bcaa..92f239e 100644
--- a/tests/tcctest.c
+++ b/tests/tcctest.c
@@ -615,9 +615,9 @@ void scope_test()
printf("g5=%d\n", g);
}
-void array_test(int a[4])
+void array_test()
{
- int i, j;
+ int i, j, a[4];
printf("array:\n");
printf("sizeof(a) = %d\n", sizeof(a));