Browse Source

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

tags/json-c-0.17-20230812
Eric Hawicz 2 years ago
parent
commit
469bc0e4bb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test1.c

+ 1
- 1
tests/test1.c 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;


Loading…
Cancel
Save