2.5.14 void free
void free(void *__ptr)
The free() function causes the allocated memory referenced by ptr
to be made available for future allocations. If ptr
is NULL, no action occurs.
void free(void *__ptr)
The free() function causes the allocated memory referenced by ptr
to be made available for future allocations. If ptr
is NULL, no action occurs.