home *** CD-ROM | disk | FTP | other *** search
/ Dream 57 / Amiga_Dream_57.iso / Amiga / Programmation / c / Compilateur / Gcc / Edition / newgccstart.lha / headers / stdlib.h < prev   
Encoding:
C/C++ Source or Header  |  1994-03-14  |  265 b   |  16 lines

  1. #ifndef STDLIB_H
  2. #define STDLIB_H
  3.  
  4. #ifndef _SIZE_T_
  5. #define _SIZE_T_
  6. typedef unsigned long size_t;
  7. #endif
  8.  
  9. void *malloc(size_t size);
  10. void *calloc(size_t nmemb,size_t size);
  11. void *realloc(void *ptr,size_t size);
  12. void free(void *ptr);
  13. void exit(int status);
  14.  
  15. #endif
  16.