2 * AcessNative libacess-native
3 * - By John Hodge (thePowersGang)
6 * - Proxies for the C standard heap
10 void *acess_malloc(size_t bytes)
15 void acess_free(void *ptr)
20 void *acess_calloc(size_t __nmemb, size_t __size)
22 return calloc(__nmemb, __size);
25 void *acess_realloc(void *__ptr, size_t __size)
27 return realloc(__ptr, __size);