2013-09-12 16:08:40 +02:00

12 lines
182 B
C

#ifndef __MALLOC_H
#define __MALLOC_H
#include "oneway_malloc.h"
#define malloc _malloc
#define calloc _calloc
#define realloc _realloc
#define free _free
#endif /* __MALLOC_H */