__qrealloc
Reallocates memory space for an object
#include <nwmalloc.h>
void *__qrealloc (
void *old,
size_t size);
__qrealloc returns a pointer to the start of the reallocated memory.
The __qrealloc function calls the __qmalloc function to enlarge a block of memory.
#include <nwmalloc.h> char memoryPtr; char old; size_t size; memoryPtr = __qrealloc (old, size);