mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 04:02:27 +00:00
tools: Mass fixing of empty prototypes (for -Wstrict-prototypes)
This commit is contained in:
@@ -36,7 +36,7 @@ static size_t s_static_init_max_waiting_count = 0; //!< maximum ever va
|
||||
extern "C" int __cxa_guard_acquire(__guard* pg);
|
||||
extern "C" void __cxa_guard_release(__guard* pg);
|
||||
extern "C" void __cxa_guard_abort(__guard* pg);
|
||||
extern "C" void __cxa_guard_dummy();
|
||||
extern "C" void __cxa_guard_dummy(void);
|
||||
|
||||
/**
|
||||
* Layout of the guard object (defined by the ABI).
|
||||
@@ -215,6 +215,6 @@ extern "C" void __cxa_guard_abort(__guard* pg)
|
||||
* Dummy function used to force linking this file instead of the same one in libstdc++.
|
||||
* This works via -u __cxa_guard_dummy flag in component.mk
|
||||
*/
|
||||
extern "C" void __cxa_guard_dummy()
|
||||
extern "C" void __cxa_guard_dummy(void)
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user