home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume20 / rc / part04 / stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-22  |  462 b   |  14 lines

  1. /*
  2.    stdlib.h function prototypes as taken from Appendix B of K&R 2.
  3.    Unused functions are:
  4.     atof(), atoi(), atol(), strtod(), strtol(), strtoul(), rand(),
  5.     srand(), calloc(), abort(), atexit(), system(), getenv(), bsearch(),
  6.     abs(), labs(), div() and ldiv()
  7. */
  8.  
  9. extern void *malloc(SIZE_T);
  10. extern void *realloc(void *, SIZE_T);
  11. extern void free(void *);
  12. extern void exit(int);
  13. extern void qsort(void *, SIZE_T, SIZE_T, int (*)(const void *, const void *));
  14.