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_MATH_H
31ffeaf689SAlexander Kabaev #define _GLIBCXX_MATH_H 1
32ca6500fcSAlexander Kabaev 
33ca6500fcSAlexander Kabaev #include <cmath>
34ca6500fcSAlexander Kabaev 
35ca6500fcSAlexander Kabaev using std::abs;
36ca6500fcSAlexander Kabaev using std::acos;
37ca6500fcSAlexander Kabaev using std::asin;
38ca6500fcSAlexander Kabaev using std::atan;
39ca6500fcSAlexander Kabaev using std::atan2;
40ca6500fcSAlexander Kabaev using std::cos;
41ca6500fcSAlexander Kabaev using std::sin;
42ca6500fcSAlexander Kabaev using std::tan;
43ca6500fcSAlexander Kabaev using std::cosh;
44ca6500fcSAlexander Kabaev using std::sinh;
45ca6500fcSAlexander Kabaev using std::tanh;
46ca6500fcSAlexander Kabaev using std::exp;
47ca6500fcSAlexander Kabaev using std::frexp;
48ca6500fcSAlexander Kabaev using std::ldexp;
49ca6500fcSAlexander Kabaev using std::log;
50ca6500fcSAlexander Kabaev using std::log10;
51ca6500fcSAlexander Kabaev using std::modf;
52ca6500fcSAlexander Kabaev using std::pow;
53ca6500fcSAlexander Kabaev using std::sqrt;
54ca6500fcSAlexander Kabaev using std::ceil;
55ca6500fcSAlexander Kabaev using std::fabs;
56ca6500fcSAlexander Kabaev using std::floor;
57ca6500fcSAlexander Kabaev using std::fmod;
58ca6500fcSAlexander Kabaev 
59ffeaf689SAlexander Kabaev #if _GLIBCXX_USE_C99
60ca6500fcSAlexander Kabaev using std::fpclassify;
61ca6500fcSAlexander Kabaev using std::isfinite;
62ca6500fcSAlexander Kabaev using std::isinf;
63ca6500fcSAlexander Kabaev using std::isnan;
64ca6500fcSAlexander Kabaev using std::isnormal;
65ca6500fcSAlexander Kabaev using std::signbit;
66ca6500fcSAlexander Kabaev using std::isgreater;
67ca6500fcSAlexander Kabaev using std::isgreaterequal;
68ca6500fcSAlexander Kabaev using std::isless;
69ca6500fcSAlexander Kabaev using std::islessequal;
70ca6500fcSAlexander Kabaev using std::islessgreater;
71ca6500fcSAlexander Kabaev using std::isunordered;
72ca6500fcSAlexander Kabaev #endif
73ca6500fcSAlexander Kabaev 
74ca6500fcSAlexander Kabaev #endif
75