43 lines
694 B
C
43 lines
694 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* 2014-08-03 bernard Add file header.
|
|
*/
|
|
|
|
#include "rtthread.h"
|
|
|
|
#ifdef RT_USING_HEAP
|
|
|
|
#ifdef __CC_ARM
|
|
/* avoid the heap and heap-using library functions supplied by arm */
|
|
#pragma import(__use_no_heap)
|
|
#endif
|
|
|
|
void *malloc(size_t n)
|
|
{
|
|
return rt_malloc(n);
|
|
}
|
|
RTM_EXPORT(malloc);
|
|
|
|
void *realloc(void *rmem, size_t newsize)
|
|
{
|
|
return rt_realloc(rmem, newsize);
|
|
}
|
|
RTM_EXPORT(realloc);
|
|
|
|
void *calloc(size_t nelem, size_t elsize)
|
|
{
|
|
return rt_calloc(nelem, elsize);
|
|
}
|
|
RTM_EXPORT(calloc);
|
|
|
|
void free(void *rmem)
|
|
{
|
|
rt_free(rmem);
|
|
}
|
|
RTM_EXPORT(free);
|
|
#endif
|