home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / smallc21 / smc21lib.lbr / CALLOC.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-04-01  |  256 b   |  11 lines

  1.  
  2. #define NOCCARGC
  3. #include stdio.h
  4. /*
  5. ** Cleared-memory allocation of n items of size bytes.
  6. ** Returns address or NULL.
  7. */
  8. calloc(n, size) char *n, *size; {
  9.   return(_alloc(n*size, YES));
  10.   }
  11.