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

@@ -28,7 +28,7 @@ void esp_reent_init(struct _reent* r);
/**
* Clean up some of lazily allocated buffers in REENT structures.
*/
void esp_reent_cleanup();
void esp_reent_cleanup(void);
/**
* Function which sets up syscall table used by newlib functions in ROM.
@@ -36,16 +36,16 @@ void esp_reent_cleanup();
* Called from the startup code, not intended to be called from application
* code.
*/
void esp_setup_syscall_table();
void esp_setup_syscall_table(void);
/**
* Update current microsecond time from RTC
*/
void esp_set_time_from_rtc();
void esp_set_time_from_rtc(void);
/*
* Sync counters RTC and FRC. Update boot_time.
*/
void esp_sync_counters_rtc_and_frc();
void esp_sync_counters_rtc_and_frc(void);
#endif //__ESP_NEWLIB_H__