1102782Skan// -*- C++ -*- compatibility header.
2102782Skan
3102782Skan// Copyright (C) 2002 Free Software Foundation, Inc.
4102782Skan//
5102782Skan// This file is part of the GNU ISO C++ Library.  This library is free
6102782Skan// software; you can redistribute it and/or modify it under the
7102782Skan// terms of the GNU General Public License as published by the
8102782Skan// Free Software Foundation; either version 2, or (at your option)
9102782Skan// any later version.
10102782Skan
11102782Skan// This library is distributed in the hope that it will be useful,
12102782Skan// but WITHOUT ANY WARRANTY; without even the implied warranty of
13102782Skan// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14102782Skan// GNU General Public License for more details.
15102782Skan
16102782Skan// You should have received a copy of the GNU General Public License along
17102782Skan// with this library; see the file COPYING.  If not, write to the Free
18169691Skan// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19102782Skan// USA.
20102782Skan
21102782Skan// As a special exception, you may use this file as part of a free software
22102782Skan// library without restriction.  Specifically, if other files instantiate
23102782Skan// templates or use macros or inline functions from this file, or you compile
24102782Skan// this file and link it with other files to produce an executable, this
25102782Skan// file does not by itself cause the resulting executable to be covered by
26102782Skan// the GNU General Public License.  This exception does not however
27102782Skan// invalidate any other reasons why the executable file might be covered by
28102782Skan// the GNU General Public License.
29102782Skan
30132720Skan#ifndef _GLIBCXX_MATH_H
31132720Skan#define _GLIBCXX_MATH_H 1
32102782Skan
33102782Skan#include <cmath>
34102782Skan
35102782Skanusing std::abs;
36102782Skanusing std::acos;
37102782Skanusing std::asin;
38102782Skanusing std::atan;
39102782Skanusing std::atan2;
40102782Skanusing std::cos;
41102782Skanusing std::sin;
42102782Skanusing std::tan;
43102782Skanusing std::cosh;
44102782Skanusing std::sinh;
45102782Skanusing std::tanh;
46102782Skanusing std::exp;
47102782Skanusing std::frexp;
48102782Skanusing std::ldexp;
49102782Skanusing std::log;
50102782Skanusing std::log10;
51102782Skanusing std::modf;
52102782Skanusing std::pow;
53102782Skanusing std::sqrt;
54102782Skanusing std::ceil;
55102782Skanusing std::fabs;
56102782Skanusing std::floor;
57102782Skanusing std::fmod;
58102782Skan
59132720Skan#if _GLIBCXX_USE_C99
60102782Skanusing std::fpclassify;
61102782Skanusing std::isfinite;
62102782Skanusing std::isinf;
63102782Skanusing std::isnan;
64102782Skanusing std::isnormal;
65102782Skanusing std::signbit;
66102782Skanusing std::isgreater;
67102782Skanusing std::isgreaterequal;
68102782Skanusing std::isless;
69102782Skanusing std::islessequal;
70102782Skanusing std::islessgreater;
71102782Skanusing std::isunordered;
72102782Skan#endif
73102782Skan
74102782Skan#endif
75