home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / include / stdlib.fake < prev    next >
Text File  |  1994-08-26  |  330b  |  20 lines

  1. #ifndef STDLIB_H
  2. #define STDLIB_H
  3. /*
  4.  * fake stdlib.h for C News use on pre-ANSI compilers.
  5.  */
  6.  
  7. extern char *malloc();
  8. extern char *realloc();
  9. extern void free();
  10. extern int atoi();
  11. extern long atol();
  12. extern double atof();
  13. extern char *getenv();
  14. extern void exit();
  15.  
  16. #ifndef NULL
  17. #define    NULL    0
  18. #endif
  19. #endif                    /* STDLIB_H */
  20.