From 48955b3aa140ee7a903e5bf6bb6e36527a0a8359 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Wed, 16 Oct 2019 17:13:27 -0500 Subject: Partial fix for #139 --- tests/include/test.c | 4 ++++ tests/include/test.h | 1 + 2 files changed, 5 insertions(+) (limited to 'tests/include') 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 -- cgit v1.2.3