From bf685d1dfc356f41e07e8c42e28969381452df7e Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Tue, 22 Jan 2019 11:14:32 -0600 Subject: Fix #58 --- tests/include/test.c | 10 +++++++++- tests/include/test.h | 6 ++++++ 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'tests/include') diff --git a/tests/include/test.c b/tests/include/test.c index 162645c..0312b4f 100644 --- a/tests/include/test.c +++ b/tests/include/test.c @@ -58,4 +58,12 @@ float test_call_param8(int *param1) { void *test_call9() { return NULL; -} \ No newline at end of file +} + +void multiline1(void) {} + +void *multiline2(void) { + return NULL; +} + +void multiline3(void) {} diff --git a/tests/include/test.h b/tests/include/test.h index a8a5b74..12f052c 100644 --- a/tests/include/test.h +++ b/tests/include/test.h @@ -109,6 +109,12 @@ int test_call_param7(union UNION1 param1); float test_call_param8(int *param1); void *test_call9(); +// Issue #58 +void + multiline1(void), + *multiline2(void), + multiline3(void); + #ifdef __cplusplus } #endif \ No newline at end of file -- cgit v1.2.3