4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 18:13:31 +08:00

add malloc related definition to rt_malloc.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@89 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong 2009-10-11 05:47:01 +00:00
parent 939eaa338f
commit a5f51e407e

View File

@ -19,4 +19,9 @@
int atoi(const char *nptr);
#endif
#define malloc rt_malloc
#define free rt_free
#define realloc rt_realloc
#define calloc rt_calloc
#endif