home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / readline / ansi_stdlib.h next >
C/C++ Source or Header  |  1996-09-28  |  533b  |  25 lines

  1. /* ansi_stdlib.h -- An ANSI Standard stdlib.h. */
  2.  
  3. /* A minimal stdlib.h containing extern declarations for those functions
  4.    that bash uses. */
  5.  
  6. #if !defined (_STDLIB_H_)
  7. #define    _STDLIB_H_ 1
  8.  
  9. /* String conversion functions. */
  10. extern int atoi ();
  11. extern long int atol ();
  12.  
  13. /* Memory allocation functions. */
  14. extern char *malloc ();
  15. extern char *realloc ();
  16. extern void free ();
  17.  
  18. /* Other miscellaneous functions. */
  19. extern void abort ();
  20. extern void exit ();
  21. extern char *getenv ();
  22. extern void qsort ();
  23.  
  24. #endif /* _STDLIB_H  */
  25.