#define NOCCARGC #include stdio.h /* ** Cleared-memory allocation of n items of size bytes. ** Returns address or NULL. */ calloc(n, size) char *n, *size; { return(_alloc(n*size, YES)); }