ansi_stdlib.h revision 21308
1160814Ssimon/* ansi_stdlib.h -- An ANSI Standard stdlib.h. */
2160814Ssimon/* A minimal stdlib.h containing extern declarations for those functions
3160814Ssimon   that bash uses. */
4160814Ssimon
5160814Ssimon/* Copyright (C) 1993 Free Software Foundation, Inc.
6160814Ssimon
7160814Ssimon   This file is part of GNU Bash, the Bourne Again SHell.
8160814Ssimon
9160814Ssimon   Bash is free software; you can redistribute it and/or modify it under
10160814Ssimon   the terms of the GNU General Public License as published by the Free
11160814Ssimon   Software Foundation; either version 2, or (at your option) any later
12160814Ssimon   version.
13160814Ssimon
14160814Ssimon   Bash is distributed in the hope that it will be useful, but WITHOUT ANY
15160814Ssimon   WARRANTY; without even the implied warranty of MERCHANTABILITY or
16160814Ssimon   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17160814Ssimon   for more details.
18160814Ssimon
19160814Ssimon   You should have received a copy of the GNU General Public License along
20160814Ssimon   with Bash; see the file COPYING.  If not, write to the Free Software
21160814Ssimon   Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
22160814Ssimon
23160814Ssimon#if !defined (_STDLIB_H_)
24160814Ssimon#define	_STDLIB_H_ 1
25160814Ssimon
26160814Ssimon/* String conversion functions. */
27160814Ssimonextern int atoi ();
28160814Ssimonextern long int atol ();
29160814Ssimon
30160814Ssimon/* Memory allocation functions. */
31160814Ssimonextern char *malloc ();
32160814Ssimonextern char *realloc ();
33160814Ssimonextern void free ();
34160814Ssimon
35160814Ssimon/* Other miscellaneous functions. */
36160814Ssimonextern void abort ();
37160814Ssimonextern void exit ();
38160814Ssimonextern char *getenv ();
39160814Ssimonextern void qsort ();
40160814Ssimon
41160814Ssimon#endif /* _STDLIB_H  */
42160814Ssimon