mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
182d45f928
Plus boat-load of fixes to actually make that build.
12 lines
317 B
C
12 lines
317 B
C
#ifndef _SDK_OVERRIDE_MEM_H_
|
|
#define _SDK_OVERRIDE_MEM_H_
|
|
|
|
void *pvPortMalloc (size_t sz, const char *, unsigned);
|
|
void vPortFree (void *p, const char *, unsigned);
|
|
void *pvPortZalloc (size_t sz, const char *, unsigned);
|
|
void *pvPortRealloc (void *p, size_t n, const char *, unsigned);
|
|
|
|
#include_next "mem.h"
|
|
|
|
#endif
|