5 lines
153 B
C
5 lines
153 B
C
#include "cutil.h"
|
|
|
|
void* (*cu_malloc)(size_t) = CUTIL_MALLOC;
|
|
void* (*cu_realloc)(void*, size_t) = CUTIL_REALLOC;
|
|
void* (*cu_free)(void*) = CUTIL_FREE;
|