home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / git-4.3 / git-4 / git-4.3.11 / src / ansi_stdlib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-22  |  1.3 KB  |  42 lines

  1. /* ansi_stdlib.h -- An ANSI Standard stdlib.h.  A minimal stdlib.h
  2.    containing extern declarations for those functions that bash uses. */
  3.  
  4. /* Copyright (C) 1993 Free Software Foundation, Inc.
  5.  
  6.    This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8.    Bash is free software; you can redistribute it and/or modify it under
  9.    the terms of the GNU General Public License as published by the Free
  10.    Software Foundation; either version 2, or (at your option) any later
  11.    version.
  12.  
  13.    Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14.    WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15.    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16.    for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License along
  19.    with Bash; see the file COPYING.  If not, write to the Free Software
  20.    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  21.  
  22. #if !defined (_STDLIB_H_)
  23. #define _STDLIB_H_ 1
  24.  
  25. /* String conversion functions. */
  26. extern int atoi ();
  27. extern long int atol ();
  28.  
  29. /* Memory allocation functions. */
  30. extern char *malloc ();
  31. extern char *calloc ();
  32. extern char *realloc ();
  33. extern void free ();
  34.  
  35. /* Other miscellaneous functions. */
  36. extern void abort ();
  37. extern void exit ();
  38. extern char *getenv ();
  39. extern void qsort ();
  40.  
  41. #endif /* _STDLIB_H  */
  42.