The wrapper for C function
realloc()or its equivalent in the given system - reallocate heap memory.For an overview see page eXtremeDB System Wrappers
void * mco_sys_realloc( /*IN*/ void * p,
/*IN*/ mco_size_t new_size );
|
p |
A pointer to memory block to reallocate |
|
new_size |
The size of the new memory block |
This function reallocates a block of memory previously allocated by
mco_sys_malloc(). It resembles the standard C functionrealloc()or its equivalent in the given system .
| void * | A pointer to the reallocated memory block |