tools: Mass fixing of empty prototypes (for -Wstrict-prototypes)

This commit is contained in:
Anton Maklakov
2019-07-16 16:33:30 +07:00
parent 50629eec27
commit afbaf74007
507 changed files with 1295 additions and 1295 deletions

View File

@@ -22,7 +22,7 @@
#include "tcpip_adapter.h"
#include "lwip/sockets.h"
const esp_partition_t *get_test_data_partition()
const esp_partition_t *get_test_data_partition(void)
{
/* This finds "flash_test" partition defined in partition_table_unit_test_app.csv */
const esp_partition_t *result = esp_partition_find_first(ESP_PARTITION_TYPE_DATA,
@@ -31,7 +31,7 @@ const esp_partition_t *get_test_data_partition()
return result;
}
void test_case_uses_tcpip()
void test_case_uses_tcpip(void)
{
// Can be called more than once, does nothing on subsequent calls
tcpip_adapter_init();