diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2019-10-16 17:13:27 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2019-10-16 17:13:27 -0500 |
| commit | 48955b3aa140ee7a903e5bf6bb6e36527a0a8359 (patch) | |
| tree | 52de8fd21e9fbce6dd4cb38cf8d6b3f86ddb4266 /tests/include | |
| parent | 531843a82a5efe59c15a675d9c3c8c5f28d4cab0 (diff) | |
| download | nimterop-48955b3aa140ee7a903e5bf6bb6e36527a0a8359.tar.gz nimterop-48955b3aa140ee7a903e5bf6bb6e36527a0a8359.zip | |
Partial fix for #139
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 |
