1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/msp430/include/malloc.h

11 lines
160 B
C
Raw Normal View History

#ifndef __MALLOC_H
#define __MALLOC_H
#include "oneway_malloc.h"
#define malloc _malloc
2010-09-30 16:07:00 +02:00
#define realloc _realloc
#define free _free
#endif /* __MALLOC_H */