8 #define ALLOC_ARRAY(type, num) (((type)*)rfxalloc(sizeof(type)*(num)))
9 void* rfx_alloc(int size);
10 void* rfx_calloc(int size);
11 void* rfx_realloc(void*data, int size);
12 void rfx_free(void*data);
14 long rfx_memory_used();
15 char* rfx_memory_used_str();