home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Add-Ons / MPW / MPW dmake 4.0 / unix / bsd43 / stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-01  |  346 b   |  20 lines  |  [TEXT/KAHL]

  1. #ifndef _STDLIB_INCLUDED_
  2. #define _STDLIB_INCLUDED_
  3.  
  4. extern /*GOTO*/ _exit();
  5. extern /*GOTO*/ exit();
  6. extern /*GOTO*/ abort();
  7. extern int system();
  8. extern char *getenv();
  9. extern char *calloc();
  10. extern char *malloc();
  11. extern char *realloc();
  12. extern free();
  13. extern int errno;
  14.  
  15. #ifndef EIO
  16. #    include <errno.h>
  17. #endif
  18.  
  19. #endif /* _STDLIB_INCLUDED_ */
  20.