New module 'powf'.
[gnulib.git] / tests / test-math-c++.cc
1 /* Test of <math.h> substitute in C++ mode.
2    Copyright (C) 2010-2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program 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
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010.  */
18
19 #define GNULIB_NAMESPACE gnulib
20 #include <config.h>
21
22 #include <math.h>
23
24 #include "signature.h"
25
26
27 //SIGNATURE_CHECK (GNULIB_NAMESPACE::acos, double, (double));
28 //SIGNATURE_CHECK (GNULIB_NAMESPACE::asin, double, (double));
29 //SIGNATURE_CHECK (GNULIB_NAMESPACE::atan, double, (double));
30 //SIGNATURE_CHECK (GNULIB_NAMESPACE::atan2, double, (double, double));
31 //SIGNATURE_CHECK (GNULIB_NAMESPACE::cbrt, double, (double));
32 //SIGNATURE_CHECK (GNULIB_NAMESPACE::copysign, double, (double, double));
33 //SIGNATURE_CHECK (GNULIB_NAMESPACE::cos, double, (double));
34 //SIGNATURE_CHECK (GNULIB_NAMESPACE::cosh, double, (double));
35 //SIGNATURE_CHECK (GNULIB_NAMESPACE::erf, double, (double));
36 //SIGNATURE_CHECK (GNULIB_NAMESPACE::erfc, double, (double));
37 #if GNULIB_TEST_EXPF
38 SIGNATURE_CHECK (GNULIB_NAMESPACE::expf, float, (float));
39 #endif
40 //SIGNATURE_CHECK (GNULIB_NAMESPACE::exp, double, (double));
41 #if GNULIB_TEST_FABSF
42 SIGNATURE_CHECK (GNULIB_NAMESPACE::fabsf, float, (float));
43 #endif
44 //SIGNATURE_CHECK (GNULIB_NAMESPACE::fabs, double, (double));
45 #if GNULIB_TEST_FMODF
46 SIGNATURE_CHECK (GNULIB_NAMESPACE::fmodf, float, (float, float));
47 #endif
48 //SIGNATURE_CHECK (GNULIB_NAMESPACE::fmod, double, (double, double));
49 #if GNULIB_TEST_FREXPF
50 SIGNATURE_CHECK (GNULIB_NAMESPACE::frexpf, float, (float, int *));
51 #endif
52 #if GNULIB_TEST_FREXP
53 SIGNATURE_CHECK (GNULIB_NAMESPACE::frexp, double, (double, int *));
54 #endif
55 //SIGNATURE_CHECK (GNULIB_NAMESPACE::hypot, double, (double, double));
56 //SIGNATURE_CHECK (GNULIB_NAMESPACE::j0, double, (double));
57 //SIGNATURE_CHECK (GNULIB_NAMESPACE::j1, double, (double));
58 //SIGNATURE_CHECK (GNULIB_NAMESPACE::jn, double, (int, double));
59 #if GNULIB_TEST_LDEXPF
60 SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexpf, float, (float, int));
61 #endif
62 //SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexp, double, (double, int));
63 //SIGNATURE_CHECK (GNULIB_NAMESPACE::lgamma, double, (double));
64 //SIGNATURE_CHECK (GNULIB_NAMESPACE::log10, double, (double));
65 //SIGNATURE_CHECK (GNULIB_NAMESPACE::log1p, double, (double));
66 //SIGNATURE_CHECK (GNULIB_NAMESPACE::logb, double, (double));
67 #if GNULIB_TEST_LOGF
68 SIGNATURE_CHECK (GNULIB_NAMESPACE::logf, float, (float));
69 #endif
70 //SIGNATURE_CHECK (GNULIB_NAMESPACE::log, double, (double));
71 #if GNULIB_TEST_LOG10F
72 SIGNATURE_CHECK (GNULIB_NAMESPACE::log10f, float, (float));
73 #endif
74 #if GNULIB_TEST_MODFF
75 SIGNATURE_CHECK (GNULIB_NAMESPACE::modff, float, (float, float *));
76 #endif
77 //SIGNATURE_CHECK (GNULIB_NAMESPACE::modf, double, (double, double *));
78 //SIGNATURE_CHECK (GNULIB_NAMESPACE::nextafter, double, (double, double));
79 #if GNULIB_TEST_POWF
80 SIGNATURE_CHECK (GNULIB_NAMESPACE::powf, float, (float, float));
81 #endif
82 //SIGNATURE_CHECK (GNULIB_NAMESPACE::pow, double, (double, double));
83 //SIGNATURE_CHECK (GNULIB_NAMESPACE::remainder, double, (double, double));
84 //SIGNATURE_CHECK (GNULIB_NAMESPACE::rint, double, (double));
85 //SIGNATURE_CHECK (GNULIB_NAMESPACE::sin, double, (double));
86 //SIGNATURE_CHECK (GNULIB_NAMESPACE::sinh, double, (double));
87 #if GNULIB_TEST_SQRTF
88 SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrtf, float, (float));
89 #endif
90 //SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrt, double, (double));
91 //SIGNATURE_CHECK (GNULIB_NAMESPACE::tan, double, (double));
92 //SIGNATURE_CHECK (GNULIB_NAMESPACE::tanh, double, (double));
93 //SIGNATURE_CHECK (GNULIB_NAMESPACE::y0, double, (double));
94 //SIGNATURE_CHECK (GNULIB_NAMESPACE::y1, double, (double));
95 //SIGNATURE_CHECK (GNULIB_NAMESPACE::yn, double, (int, double));
96
97 #if GNULIB_TEST_ACOSL
98 SIGNATURE_CHECK (GNULIB_NAMESPACE::acosl, long double, (long double));
99 #endif
100
101 #if GNULIB_TEST_ASINL
102 SIGNATURE_CHECK (GNULIB_NAMESPACE::asinl, long double, (long double));
103 #endif
104
105 #if GNULIB_TEST_ATANL
106 SIGNATURE_CHECK (GNULIB_NAMESPACE::atanl, long double, (long double));
107 #endif
108
109 #if GNULIB_TEST_CEILF
110 SIGNATURE_CHECK (GNULIB_NAMESPACE::ceilf, float, (float));
111 #endif
112
113 #if GNULIB_TEST_CEIL
114 SIGNATURE_CHECK (GNULIB_NAMESPACE::ceil, double, (double));
115 #endif
116
117 #if GNULIB_TEST_CEILL
118 SIGNATURE_CHECK (GNULIB_NAMESPACE::ceill, long double, (long double));
119 #endif
120
121 #if GNULIB_TEST_COSL
122 SIGNATURE_CHECK (GNULIB_NAMESPACE::cosl, long double, (long double));
123 #endif
124
125 #if GNULIB_TEST_EXPL
126 SIGNATURE_CHECK (GNULIB_NAMESPACE::expl, long double, (long double));
127 #endif
128
129 #if GNULIB_TEST_FLOORF
130 SIGNATURE_CHECK (GNULIB_NAMESPACE::floorf, float, (float));
131 #endif
132
133 #if GNULIB_TEST_FLOOR
134 SIGNATURE_CHECK (GNULIB_NAMESPACE::floor, double, (double));
135 #endif
136
137 #if GNULIB_TEST_FLOORL
138 SIGNATURE_CHECK (GNULIB_NAMESPACE::floorl, long double, (long double));
139 #endif
140
141 #if GNULIB_TEST_FREXPL
142 SIGNATURE_CHECK (GNULIB_NAMESPACE::frexpl, long double, (long double, int *));
143 #endif
144
145 #if GNULIB_TEST_LDEXPL
146 SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexpl, long double, (long double, int));
147 #endif
148
149 #if GNULIB_TEST_LOGL
150 SIGNATURE_CHECK (GNULIB_NAMESPACE::logl, long double, (long double));
151 #endif
152
153 #if GNULIB_TEST_ROUNDF
154 SIGNATURE_CHECK (GNULIB_NAMESPACE::roundf, float, (float));
155 #endif
156
157 #if GNULIB_TEST_ROUND
158 SIGNATURE_CHECK (GNULIB_NAMESPACE::round, double, (double));
159 #endif
160
161 #if GNULIB_TEST_ROUNDL
162 SIGNATURE_CHECK (GNULIB_NAMESPACE::roundl, long double, (long double));
163 #endif
164
165 #if GNULIB_TEST_SINL
166 SIGNATURE_CHECK (GNULIB_NAMESPACE::sinl, long double, (long double));
167 #endif
168
169 #if GNULIB_TEST_SQRTL
170 SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrtl, long double, (long double));
171 #endif
172
173 #if GNULIB_TEST_TANL
174 SIGNATURE_CHECK (GNULIB_NAMESPACE::tanl, long double, (long double));
175 #endif
176
177 #if GNULIB_TEST_TRUNCF
178 SIGNATURE_CHECK (GNULIB_NAMESPACE::truncf, float, (float));
179 #endif
180
181 #if GNULIB_TEST_TRUNC
182 SIGNATURE_CHECK (GNULIB_NAMESPACE::trunc, double, (double));
183 #endif
184
185 #if GNULIB_TEST_TRUNCL
186 SIGNATURE_CHECK (GNULIB_NAMESPACE::truncl, long double, (long double));
187 #endif
188
189
190 int
191 main ()
192 {
193 }