#define NOCCARGC #include stdio.h /* ** Memory allocation of size bytes. ** size = Size of the block in bytes. ** returns the address of the allocated block, ** else NULL for failure. */ malloc(size) char *size; { return (_alloc(size, NO)); }