mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
13 lines
251 B
C
13 lines
251 B
C
#ifndef __MEM_H__
|
|
#define __MEM_H__
|
|
|
|
//void *pvPortMalloc( size_t xWantedSize );
|
|
//void vPortFree( void *pv );
|
|
//void *pvPortZalloc(size_t size);
|
|
|
|
#define os_malloc pvPortMalloc
|
|
#define os_free vPortFree
|
|
#define os_zalloc pvPortZalloc
|
|
|
|
#endif
|