]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/26_numerics/headers/cmath/functions_std_c++17.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 26_numerics / headers / cmath / functions_std_c++17.cc
CommitLineData
fbd26352 1// Copyright (C) 2016-2019 Free Software Foundation, Inc.
dc043b87 2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
18// { dg-options "-std=gnu++17" }
19// { dg-do compile }
20
21#include <cmath>
22
23namespace gnu
24{
25 using std::acos;
26 using std::asin;
27 using std::atan;
28 using std::atan2;
29 using std::ceil;
30 using std::cos;
31 using std::cosh;
32 using std::exp;
33 using std::fabs;
34 using std::floor;
35 using std::fmod;
36 using std::frexp;
37 using std::ldexp;
38 using std::log;
39 using std::log10;
40 using std::modf;
41 using std::pow;
42 using std::sin;
43 using std::sinh;
44 using std::sqrt;
45 using std::tan;
46 using std::tanh;
47
48 using std::assoc_laguerre;
49 using std::assoc_laguerref;
50 using std::assoc_laguerrel;
51 using std::assoc_legendre;
52 using std::assoc_legendref;
53 using std::assoc_legendrel;
54 using std::beta;
55 using std::betaf;
56 using std::betal;
57 using std::comp_ellint_1;
58 using std::comp_ellint_1f;
59 using std::comp_ellint_1l;
60 using std::comp_ellint_2;
61 using std::comp_ellint_2f;
62 using std::comp_ellint_2l;
63 using std::comp_ellint_3;
64 using std::comp_ellint_3f;
65 using std::comp_ellint_3l;
66 using std::cyl_bessel_i;
67 using std::cyl_bessel_if;
68 using std::cyl_bessel_il;
69 using std::cyl_bessel_j;
70 using std::cyl_bessel_jf;
71 using std::cyl_bessel_jl;
72 using std::cyl_bessel_k;
73 using std::cyl_bessel_kf;
74 using std::cyl_bessel_kl;
75 using std::cyl_neumann;
76 using std::cyl_neumannf;
77 using std::cyl_neumannl;
78 using std::ellint_1;
79 using std::ellint_1f;
80 using std::ellint_1l;
81 using std::ellint_2;
82 using std::ellint_2f;
83 using std::ellint_2l;
84 using std::ellint_3;
85 using std::ellint_3f;
86 using std::ellint_3l;
87 using std::expint;
88 using std::expintf;
89 using std::expintl;
90 using std::hermite;
91 using std::hermitef;
92 using std::hermitel;
93 using std::laguerre;
94 using std::laguerref;
95 using std::laguerrel;
96 using std::legendre;
97 using std::legendref;
98 using std::legendrel;
99 using std::riemann_zeta;
100 using std::riemann_zetaf;
101 using std::riemann_zetal;
102 using std::sph_bessel;
103 using std::sph_besself;
104 using std::sph_bessell;
105 using std::sph_legendre;
106 using std::sph_legendref;
107 using std::sph_legendrel;
108 using std::sph_neumann;
109 using std::sph_neumannf;
110 using std::sph_neumannl;
111}