Work around a somewhat misleading warning about "a function declaration without a prototype is deprecated in all versions of C" in test1.c

This commit is contained in:
Eric Hawicz
2023-07-29 11:22:12 -04:00
parent ce3184243a
commit 469bc0e4bb

View File

@@ -190,7 +190,7 @@ void test_array_list_expand_internal(void)
} }
void test_array_insert_idx(void); void test_array_insert_idx(void);
void test_array_insert_idx() void test_array_insert_idx(void)
{ {
json_object *my_array; json_object *my_array;
struct json_object *jo1; struct json_object *jo1;