ansi_stdlib.h revision 75406
154359Sroberto/* ansi_stdlib.h -- An ANSI Standard stdlib.h. */
254359Sroberto/* A minimal stdlib.h containing extern declarations for those functions
354359Sroberto   that bash uses. */
454359Sroberto
554359Sroberto/* Copyright (C) 1993 Free Software Foundation, Inc.
654359Sroberto
754359Sroberto   This file is part of GNU Bash, the Bourne Again SHell.
854359Sroberto
954359Sroberto   Bash is free software; you can redistribute it and/or modify it under
1054359Sroberto   the terms of the GNU General Public License as published by the Free
1154359Sroberto   Software Foundation; either version 2, or (at your option) any later
1254359Sroberto   version.
1354359Sroberto
1454359Sroberto   Bash is distributed in the hope that it will be useful, but WITHOUT ANY
15285612Sdelphij   WARRANTY; without even the implied warranty of MERCHANTABILITY or
16285612Sdelphij   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17285612Sdelphij   for more details.
1854359Sroberto
19285612Sdelphij   You should have received a copy of the GNU General Public License along
2054359Sroberto   with Bash; see the file COPYING.  If not, write to the Free Software
2154359Sroberto   Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
2254359Sroberto
2354359Sroberto#if !defined (_STDLIB_H_)
2454359Sroberto#define	_STDLIB_H_ 1
25285612Sdelphij
2654359Sroberto/* String conversion functions. */
2754359Srobertoextern int atoi ();
2854359Srobertoextern long int atol ();
29285612Sdelphij
3054359Srobertoextern double atof ();
31285612Sdelphijextern double strtod ();
3254359Sroberto
3354359Sroberto/* Memory allocation functions. */
3454359Srobertoextern char *malloc ();
35285612Sdelphijextern char *realloc ();
36285612Sdelphijextern void free ();
3754359Sroberto
3854359Sroberto/* Other miscellaneous functions. */
3954359Srobertoextern void abort ();
40285612Sdelphijextern void exit ();
4154359Srobertoextern char *getenv ();
42285612Sdelphijextern void qsort ();
4354359Sroberto
44285612Sdelphij#endif /* _STDLIB_H  */
45285612Sdelphij