5 void* _ogg_calloc(size_t _num
, size_t _size
) {
7 res
= calloc(_num
, _size
);
8 if (res
== 0) printf("PROBLEM IN CALLOC!\n");
12 void* _ogg_malloc(size_t _size
) {
15 if (res
== 0) printf("PROBLEM IN MALLOC!\n");
20 void* _ogg_realloc(void *_ptr
, size_t _size
) {
22 res
= realloc(_ptr
, _size
);
23 if (res
== 0) printf("PROBLEM IN REALLOC!\n");