diff options
Diffstat (limited to 'tests/include')
| -rw-r--r-- | tests/include/test.c | 4 | ||||
| -rw-r--r-- | tests/include/test.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/include/test.c b/tests/include/test.c index 8990df9..18e444f 100644 --- a/tests/include/test.c +++ b/tests/include/test.c @@ -64,6 +64,10 @@ void **test_call10(int **param1) { return NULL; } +char *test_array_param(int arr[5]) { + return NULL; +} + void multiline1(void) {} void *multiline2(void) { diff --git a/tests/include/test.h b/tests/include/test.h index df48cd0..d062277 100644 --- a/tests/include/test.h +++ b/tests/include/test.h @@ -119,6 +119,7 @@ int test_call_param7(union UNION1 param1); float test_call_param8(int *param1); void *test_call9(); void **test_call10(int **param1); +char *test_array_param(int arr[5]); // Issue #58 void |
