mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
11 lines
160 B
C
11 lines
160 B
C
#ifndef __MALLOC_H
|
|
#define __MALLOC_H
|
|
|
|
#include "oneway_malloc.h"
|
|
|
|
#define malloc _malloc
|
|
#define realloc _realloc
|
|
#define free _free
|
|
|
|
#endif /* __MALLOC_H */
|