home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / adev11.lha / ADev11 / include / stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-25  |  356 b   |  23 lines

  1. #ifndef _SIZE_T
  2. #define _SIZE_T 1
  3. typedef unsigned int size_t;
  4. #endif
  5.  
  6. /*
  7.  *
  8.  * Level 3 memory allocation services
  9.  *
  10.  */
  11. extern void *malloc (unsigned);
  12. extern void *calloc (unsigned,unsigned);
  13. extern void *realloc (void*, unsigned);
  14. extern void free (void *);
  15.  
  16. /*
  17.  *
  18.  * Miscellaneous functions
  19.  *
  20.  */
  21. extern int atoi (char *);
  22. extern long atol (char *);
  23.