Makes available for reallocation the area allocated by a previous calloc, malloc, or realloc call. This function is AST-reentrant.
#include <stdlib.h> void cfree (void *ptr);
In DEC C for OpenVMS Systems, the free and cfree functions are equivalent. Some other C implementations use free with malloc or realloc, and cfree with calloc. However, since the ANSI C standard does not include cfree, using free may be preferable.
See also free in this section.