home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff314.lha / zc / zc.lzh / include / malloc.h < prev    next >
C/C++ Source or Header  |  1989-05-11  |  251b  |  16 lines

  1. /*
  2.  *    Header for memory management routines
  3.  */
  4.  
  5. extern    char    *malloc();
  6. extern    char    *calloc();
  7. extern    char    *lalloc();
  8. extern    char    *realloc();
  9. extern    long    msize();
  10. extern    long    memavail();
  11.  
  12. extern    char    *alloca();
  13.  
  14. extern    char    *sbrk();
  15. extern    int    brk();
  16.