mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 12:35:28 +00:00
Fix function prototypes
This commit is contained in:

committed by
Angus Gratton

parent
c47e1756f8
commit
18c5cfadae
@@ -106,7 +106,7 @@ static bool s_spiram_okay=true;
|
||||
* and the app CPU is in reset. We do have a stack, so we can do the initialization in C.
|
||||
*/
|
||||
|
||||
void IRAM_ATTR call_start_cpu0()
|
||||
void IRAM_ATTR call_start_cpu0(void)
|
||||
{
|
||||
RESET_REASON rst_reas;
|
||||
|
||||
@@ -347,7 +347,7 @@ void start_cpu0_default(void)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_COMPILER_CXX_EXCEPTIONS
|
||||
size_t __cxx_eh_arena_size_get()
|
||||
size_t __cxx_eh_arena_size_get(void)
|
||||
{
|
||||
return CONFIG_COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user