1ca6500fcSAlexander Kabaev // -*- C++ -*- compatibility header.
2ca6500fcSAlexander Kabaev 
3ca6500fcSAlexander Kabaev // Copyright (C) 2002 Free Software Foundation, Inc.
4ca6500fcSAlexander Kabaev //
5ca6500fcSAlexander Kabaev // This file is part of the GNU ISO C++ Library.  This library is free
6ca6500fcSAlexander Kabaev // software; you can redistribute it and/or modify it under the
7ca6500fcSAlexander Kabaev // terms of the GNU General Public License as published by the
8ca6500fcSAlexander Kabaev // Free Software Foundation; either version 2, or (at your option)
9ca6500fcSAlexander Kabaev // any later version.
10ca6500fcSAlexander Kabaev 
11ca6500fcSAlexander Kabaev // This library is distributed in the hope that it will be useful,
12ca6500fcSAlexander Kabaev // but WITHOUT ANY WARRANTY; without even the implied warranty of
13ca6500fcSAlexander Kabaev // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14ca6500fcSAlexander Kabaev // GNU General Public License for more details.
15ca6500fcSAlexander Kabaev 
16ca6500fcSAlexander Kabaev // You should have received a copy of the GNU General Public License along
17ca6500fcSAlexander Kabaev // with this library; see the file COPYING.  If not, write to the Free
18*f8a1b7d9SAlexander Kabaev // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19ca6500fcSAlexander Kabaev // USA.
20ca6500fcSAlexander Kabaev 
21ca6500fcSAlexander Kabaev // As a special exception, you may use this file as part of a free software
22ca6500fcSAlexander Kabaev // library without restriction.  Specifically, if other files instantiate
23ca6500fcSAlexander Kabaev // templates or use macros or inline functions from this file, or you compile
24ca6500fcSAlexander Kabaev // this file and link it with other files to produce an executable, this
25ca6500fcSAlexander Kabaev // file does not by itself cause the resulting executable to be covered by
26ca6500fcSAlexander Kabaev // the GNU General Public License.  This exception does not however
27ca6500fcSAlexander Kabaev // invalidate any other reasons why the executable file might be covered by
28ca6500fcSAlexander Kabaev // the GNU General Public License.
29ca6500fcSAlexander Kabaev 
30ffeaf689SAlexander Kabaev #ifndef _GLIBCXX_STDLIB_H
31ffeaf689SAlexander Kabaev #define _GLIBCXX_STDLIB_H 1
32ca6500fcSAlexander Kabaev 
33ca6500fcSAlexander Kabaev #include <cstdlib>
34ca6500fcSAlexander Kabaev 
35ca6500fcSAlexander Kabaev using std::div_t;
36ca6500fcSAlexander Kabaev using std::ldiv_t;
37ca6500fcSAlexander Kabaev 
38ca6500fcSAlexander Kabaev using std::abort;
39ca6500fcSAlexander Kabaev using std::abs;
40ca6500fcSAlexander Kabaev using std::atexit;
41ca6500fcSAlexander Kabaev using std::atof;
42ca6500fcSAlexander Kabaev using std::atoi;
43ca6500fcSAlexander Kabaev using std::atol;
44ca6500fcSAlexander Kabaev using std::bsearch;
45ca6500fcSAlexander Kabaev using std::calloc;
46ca6500fcSAlexander Kabaev using std::div;
47ca6500fcSAlexander Kabaev using std::exit;
48ca6500fcSAlexander Kabaev using std::free;
49ca6500fcSAlexander Kabaev using std::getenv;
50ca6500fcSAlexander Kabaev using std::labs;
51ca6500fcSAlexander Kabaev using std::ldiv;
52ca6500fcSAlexander Kabaev using std::malloc;
53ca6500fcSAlexander Kabaev using std::mblen;
54ca6500fcSAlexander Kabaev using std::mbstowcs;
55ca6500fcSAlexander Kabaev using std::mbtowc;
56ca6500fcSAlexander Kabaev using std::qsort;
57ca6500fcSAlexander Kabaev using std::rand;
58ca6500fcSAlexander Kabaev using std::realloc;
59ca6500fcSAlexander Kabaev using std::srand;
60ca6500fcSAlexander Kabaev using std::strtod;
61ca6500fcSAlexander Kabaev using std::strtol;
62ca6500fcSAlexander Kabaev using std::strtoul;
63ca6500fcSAlexander Kabaev using std::system;
64ca6500fcSAlexander Kabaev using std::wcstombs;
65ca6500fcSAlexander Kabaev using std::wctomb;
66ca6500fcSAlexander Kabaev 
67ca6500fcSAlexander Kabaev #endif
68