wifi-tally_Oostendam/nodemcu-firmware/sdk-overrides/include/stdlib.h

14 lines
262 B
C
Raw Normal View History

2021-09-27 19:52:27 +00:00
#ifndef _OVERRIDE_STDLIB_H_
#define _OVERRIDE_STDLIB_H_
#include_next "stdlib.h"
#include <stdbool.h>
#include "mem.h"
#define free os_free
#define malloc os_malloc
#define calloc(n,sz) os_zalloc(n*sz)
#define realloc os_realloc
#endif