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 / MALLOC.C < prev    next >
Text File  |  2000-06-30  |  384b  |  16 lines

  1.  
  2. #define NOCCARGC
  3. #include stdio.h
  4. /*
  5. ** Memory allocation of size bytes.
  6. ** size = Size of the block in bytes.
  7. ** returns the address of the allocated block,
  8. ** else NULL for failure.
  9. */
  10. malloc(size) char *size; {
  11.   return (_alloc(size, NO));
  12.   }
  13.  
  14. ,001,002,003,004,005,006,007,008,009,
  15.     010,011,012,013,014,015,016,017,018,019,
  16.     020,021,022,023,024,025,026,027,