ansi_stdlib.h revision 75406
1139776Simp/* ansi_stdlib.h -- An ANSI Standard stdlib.h. */
2206361Sjoel/* A minimal stdlib.h containing extern declarations for those functions
375374Sbp   that bash uses. */
475374Sbp
575374Sbp/* Copyright (C) 1993 Free Software Foundation, Inc.
675374Sbp
775374Sbp   This file is part of GNU Bash, the Bourne Again SHell.
875374Sbp
975374Sbp   Bash is free software; you can redistribute it and/or modify it under
1075374Sbp   the terms of the GNU General Public License as published by the Free
1175374Sbp   Software Foundation; either version 2, or (at your option) any later
1275374Sbp   version.
1375374Sbp
1475374Sbp   Bash is distributed in the hope that it will be useful, but WITHOUT ANY
1575374Sbp   WARRANTY; without even the implied warranty of MERCHANTABILITY or
1675374Sbp   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1775374Sbp   for more details.
1875374Sbp
1975374Sbp   You should have received a copy of the GNU General Public License along
2075374Sbp   with Bash; see the file COPYING.  If not, write to the Free Software
2175374Sbp   Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
2275374Sbp
2375374Sbp#if !defined (_STDLIB_H_)
2475374Sbp#define	_STDLIB_H_ 1
2575374Sbp
2675374Sbp/* String conversion functions. */
2775374Sbpextern int atoi ();
2875374Sbpextern long int atol ();
2975374Sbp
3075374Sbpextern double atof ();
3175374Sbpextern double strtod ();
3275374Sbp
3375374Sbp/* Memory allocation functions. */
3475374Sbpextern char *malloc ();
3575374Sbpextern char *realloc ();
3675374Sbpextern void free ();
3775374Sbp
3875374Sbp/* Other miscellaneous functions. */
3975374Sbpextern void abort ();
4087798Ssheldonhextern void exit ();
41176744Srwatsonextern char *getenv ();
4275374Sbpextern void qsort ();
4375374Sbp
4475374Sbp#endif /* _STDLIB_H  */
4575374Sbp