mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-21 09:05:59 +08:00
Merge branch 'bugfix/examples_compile_issue_due_to_redefine' into 'master'
fix(lwip): Fix definition conflict See merge request sdk/ESP8266_RTOS_SDK!127
This commit is contained in:
@ -46,6 +46,7 @@
|
||||
|
||||
#include "sdkconfig.h"
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
#include "esp_libc.h"
|
||||
|
||||
//#define SOCKETS_MT
|
||||
@ -193,7 +194,7 @@
|
||||
/**
|
||||
* Use DRAM instead of IRAM
|
||||
*/
|
||||
extern void *pvPortMalloc( size_t xWantedSize, const char * file, unsigned line, unsigned char use_iram);
|
||||
extern void *pvPortMalloc( size_t xWantedSize, const char * file, unsigned line, bool use_iram);
|
||||
extern void *pvPortZalloc( size_t xWantedSize, const char * file, unsigned line);
|
||||
extern void *pvPortCalloc(size_t count, size_t size, const char * file, unsigned line);
|
||||
extern void vPortFree(void *pv, const char * file, unsigned line);
|
||||
|
Reference in New Issue
Block a user