mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-21 04:23:50 +01:00
10 lines
135 B
C
10 lines
135 B
C
#ifndef __MALLOC_H
|
|
#define __MALLOC_H
|
|
|
|
#include "oneway_malloc.h"
|
|
|
|
#define malloc _malloc
|
|
#define free _free
|
|
|
|
#endif /* __MALLOC_H */
|