ansi_stdlib.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

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