home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / CALLOC.C < prev    next >
Text File  |  2000-06-30  |  256b  |  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.