From 70ecc58201ab7c20f268cd563618a9fa1f69e0d4 Mon Sep 17 00:00:00 2001 From: Adrian Friedli Date: Tue, 25 Oct 2016 10:57:21 +0200 Subject: src: Add support for compile flag -Wstrict-prototypes --- example/allocate_module_test.c | 6 +++--- example/customer_database_test.c | 2 +- src/cmocka.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example/allocate_module_test.c b/example/allocate_module_test.c index cd5d371..562aea2 100644 --- a/example/allocate_module_test.c +++ b/example/allocate_module_test.c @@ -18,9 +18,9 @@ #include #include -extern void leak_memory(); -extern void buffer_overflow(); -extern void buffer_underflow(); +extern void leak_memory(void); +extern void buffer_overflow(void); +extern void buffer_underflow(void); /* Test case that fails as leak_memory() leaks a dynamically allocated block. */ static void leak_memory_test(void **state) { diff --git a/example/customer_database_test.c b/example/customer_database_test.c index 2f78b05..45ec782 100644 --- a/example/customer_database_test.c +++ b/example/customer_database_test.c @@ -19,7 +19,7 @@ #include #include -extern DatabaseConnection* connect_to_customer_database(); +extern DatabaseConnection* connect_to_customer_database(void); extern unsigned int get_customer_id_by_name( DatabaseConnection * const connection, const char * const customer_name); diff --git a/src/cmocka.c b/src/cmocka.c index 6c79a20..a74a8e5 100644 --- a/src/cmocka.c +++ b/src/cmocka.c @@ -1730,7 +1730,7 @@ void _assert_not_in_set(const LargestIntegralType value, /* Get the list of allocated blocks. */ -static ListNode* get_allocated_blocks_list() { +static ListNode* get_allocated_blocks_list(void) { /* If it initialized, initialize the list of allocated blocks. */ if (!global_allocated_blocks.value) { list_initialize(&global_allocated_blocks); @@ -1945,7 +1945,7 @@ void *_test_realloc(void *ptr, #define realloc test_realloc /* Crudely checkpoint the current heap state. */ -static const ListNode* check_point_allocated_blocks() { +static const ListNode* check_point_allocated_blocks(void) { return get_allocated_blocks_list()->prev; } -- cgit v1.2.3