Description
The
realloc function allocates space for an object
whose size is specified by size
and whose value is indeterminate
Returns
The
realloc function returns either a null pointer
or a pointer to the allocated space.
Implementation Notes
The pointer returned is always 8-byte aligned so that
objects of type double may
be assigned.
|