math.h revision 132720
1251877Speter// -*- C++ -*- compatibility header.
2251877Speter
3251877Speter// Copyright (C) 2002 Free Software Foundation, Inc.
4251877Speter//
5251877Speter// This file is part of the GNU ISO C++ Library.  This library is free
6251877Speter// software; you can redistribute it and/or modify it under the
7251877Speter// terms of the GNU General Public License as published by the
8251877Speter// Free Software Foundation; either version 2, or (at your option)
9251877Speter// any later version.
10251877Speter
11251877Speter// This library is distributed in the hope that it will be useful,
12251877Speter// but WITHOUT ANY WARRANTY; without even the implied warranty of
13251877Speter// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14251877Speter// GNU General Public License for more details.
15251877Speter
16251877Speter// You should have received a copy of the GNU General Public License along
17251877Speter// with this library; see the file COPYING.  If not, write to the Free
18251877Speter// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19251877Speter// USA.
20251877Speter
21251877Speter// As a special exception, you may use this file as part of a free software
22251877Speter// library without restriction.  Specifically, if other files instantiate
23251877Speter// templates or use macros or inline functions from this file, or you compile
24251877Speter// this file and link it with other files to produce an executable, this
25251877Speter// file does not by itself cause the resulting executable to be covered by
26251877Speter// the GNU General Public License.  This exception does not however
27251877Speter// invalidate any other reasons why the executable file might be covered by
28251877Speter// the GNU General Public License.
29251877Speter
30251877Speter#ifndef _GLIBCXX_MATH_H
31251877Speter#define _GLIBCXX_MATH_H 1
32251877Speter
33251877Speter#include <cmath>
34251877Speter
35251877Speterusing std::abs;
36251877Speterusing std::acos;
37251877Speterusing std::asin;
38251877Speterusing std::atan;
39251877Speterusing std::atan2;
40251877Speterusing std::cos;
41251877Speterusing std::sin;
42251877Speterusing std::tan;
43251877Speterusing std::cosh;
44251877Speterusing std::sinh;
45251877Speterusing std::tanh;
46251877Speterusing std::exp;
47251877Speterusing std::frexp;
48251877Speterusing std::ldexp;
49251877Speterusing std::log;
50251877Speterusing std::log10;
51251877Speterusing std::modf;
52251877Speterusing std::pow;
53251877Speterusing std::sqrt;
54251877Speterusing std::ceil;
55251877Speterusing std::fabs;
56251877Speterusing std::floor;
57251877Speterusing std::fmod;
58251877Speter
59251877Speter#if _GLIBCXX_USE_C99
60251877Speterusing std::fpclassify;
61251877Speterusing std::isfinite;
62251877Speterusing std::isinf;
63251877Speterusing std::isnan;
64251877Speterusing std::isnormal;
65251877Speterusing std::signbit;
66251877Speterusing std::isgreater;
67251877Speterusing std::isgreaterequal;
68251877Speterusing std::isless;
69251877Speterusing std::islessequal;
70251877Speterusing std::islessgreater;
71251877Speterusing std::isunordered;
72251877Speter#endif
73251877Speter
74253895Speter#endif
75253895Speter