10 #define ALLOC_ARRAY(type, num) (((type)*)rfxalloc(sizeof(type)*(num)))
11 void* rfx_alloc(int size
);
12 void* rfx_calloc(int size
);
13 void* rfx_realloc(void*data
, int size
);
14 void rfx_free(void*data
);
16 void* rfx_calloc_replacement(int nmemb
, int size
);
19 long rfx_memory_used();
20 char* rfx_memory_used_str();