home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s220 / 2.ddi / STDLIB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-10  |  239 b   |  16 lines

  1. /*        STDLIB.H        */
  2.  
  3. #ifndef size_t
  4. #define size_t int
  5. #endif
  6.  
  7. void    *malloc(size_t size);
  8.  
  9. void    free(void *ptr);
  10.  
  11. void    exit(int status);
  12.  
  13. void    *calloc(unsigned int nelem, size_t elsize);
  14.  
  15. void    *realloc(void *ptr, size_t size);
  16.