malloc, free, realloc, calloc - main memory allocator
NAME malloc, free, realloc, calloc - main memory allocator SYNOPSIS char *malloc (size) unsigned size; free (ptr) char *ptr; char *realloc (ptr, size) char *ptr; unsigned size; char *calloc(nelem, eisize) unsigned elem, eisize; DESCRIPTION malloc and free...