home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / MALLOC.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  384 b   |  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,