New module 'frexpf'.
[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 //SIGNATURE_CHECK (GNULIB_NAMESPACE::exp, double, (double));
38 #if GNULIB_TEST_FABSF
39 SIGNATURE_CHECK (GNULIB_NAMESPACE::fabsf, float, (float));
40 #endif
41 //SIGNATURE_CHECK (GNULIB_NAMESPACE::fabs, double, (double));
42 #if GNULIB_TEST_FMODF
43 SIGNATURE_CHECK (GNULIB_NAMESPACE::fmodf, float, (float, float));
44 #endif
45 //SIGNATURE_CHECK (GNULIB_NAMESPACE::fmod, double, (double, double));
46 #if GNULIB_TEST_FREXPF
47 SIGNATURE_CHECK (GNULIB_NAMESPACE::frexpf, float, (float, int *));
48 #endif
49 #if GNULIB_TEST_FREXP
50 SIGNATURE_CHECK (GNULIB_NAMESPACE::frexp, double, (double, int *));
51 #endif
52 //SIGNATURE_CHECK (GNULIB_NAMESPACE::hypot, double, (double, double));
53 //SIGNATURE_CHECK (GNULIB_NAMESPACE::j0, double, (double));
54 //SIGNATURE_CHECK (GNULIB_NAMESPACE::j1, double, (double));
55 //SIGNATURE_CHECK (GNULIB_NAMESPACE::jn, double, (int, double));
56 //SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexp, double, (double, int));
57 //SIGNATURE_CHECK (GNULIB_NAMESPACE::lgamma, double, (double));
58 //SIGNATURE_CHECK (GNULIB_NAMESPACE::log10, double, (double));
59 //SIGNATURE_CHECK (GNULIB_NAMESPACE::log1p, double, (double));
60 //SIGNATURE_CHECK (GNULIB_NAMESPACE::logb, double, (double));
61 //SIGNATURE_CHECK (GNULIB_NAMESPACE::log, double, (double));
62 #if GNULIB_TEST_MODFF
63 SIGNATURE_CHECK (GNULIB_NAMESPACE::modff, float, (float, float *));
64 #endif
65 //SIGNATURE_CHECK (GNULIB_NAMESPACE::modf, double, (double, double *));
66 //SIGNATURE_CHECK (GNULIB_NAMESPACE::nextafter, double, (double, double));
67 //SIGNATURE_CHECK (GNULIB_NAMESPACE::pow, double, (double, double));
68 //SIGNATURE_CHECK (GNULIB_NAMESPACE::remainder, double, (double, double));
69 //SIGNATURE_CHECK (GNULIB_NAMESPACE::rint, double, (double));
70 //SIGNATURE_CHECK (GNULIB_NAMESPACE::sin, double, (double));
71 //SIGNATURE_CHECK (GNULIB_NAMESPACE::sinh, double, (double));
72 //SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrt, double, (double));
73 //SIGNATURE_CHECK (GNULIB_NAMESPACE::tan, double, (double));
74 //SIGNATURE_CHECK (GNULIB_NAMESPACE::tanh, double, (double));
75 //SIGNATURE_CHECK (GNULIB_NAMESPACE::y0, double, (double));
76 //SIGNATURE_CHECK (GNULIB_NAMESPACE::y1, double, (double));
77 //SIGNATURE_CHECK (GNULIB_NAMESPACE::yn, double, (int, double));
78
79 #if GNULIB_TEST_ACOSL
80 SIGNATURE_CHECK (GNULIB_NAMESPACE::acosl, long double, (long double));
81 #endif
82
83 #if GNULIB_TEST_ASINL
84 SIGNATURE_CHECK (GNULIB_NAMESPACE::asinl, long double, (long double));
85 #endif
86
87 #if GNULIB_TEST_ATANL
88 SIGNATURE_CHECK (GNULIB_NAMESPACE::atanl, long double, (long double));
89 #endif
90
91 #if GNULIB_TEST_CEILF
92 SIGNATURE_CHECK (GNULIB_NAMESPACE::ceilf, float, (float));
93 #endif
94
95 #if GNULIB_TEST_CEIL
96 SIGNATURE_CHECK (GNULIB_NAMESPACE::ceil, double, (double));
97 #endif
98
99 #if GNULIB_TEST_CEILL
100 SIGNATURE_CHECK (GNULIB_NAMESPACE::ceill, long double, (long double));
101 #endif
102
103 #if GNULIB_TEST_COSL
104 SIGNATURE_CHECK (GNULIB_NAMESPACE::cosl, long double, (long double));
105 #endif
106
107 #if GNULIB_TEST_EXPL
108 SIGNATURE_CHECK (GNULIB_NAMESPACE::expl, long double, (long double));
109 #endif
110
111 #if GNULIB_TEST_FLOORF
112 SIGNATURE_CHECK (GNULIB_NAMESPACE::floorf, float, (float));
113 #endif
114
115 #if GNULIB_TEST_FLOOR
116 SIGNATURE_CHECK (GNULIB_NAMESPACE::floor, double, (double));
117 #endif
118
119 #if GNULIB_TEST_FLOORL
120 SIGNATURE_CHECK (GNULIB_NAMESPACE::floorl, long double, (long double));
121 #endif
122
123 #if GNULIB_TEST_FREXPL
124 SIGNATURE_CHECK (GNULIB_NAMESPACE::frexpl, long double, (long double, int *));
125 #endif
126
127 #if GNULIB_TEST_LDEXPL
128 SIGNATURE_CHECK (GNULIB_NAMESPACE::ldexpl, long double, (long double, int));
129 #endif
130
131 #if GNULIB_TEST_LOGL
132 SIGNATURE_CHECK (GNULIB_NAMESPACE::logl, long double, (long double));
133 #endif
134
135 #if GNULIB_TEST_ROUNDF
136 SIGNATURE_CHECK (GNULIB_NAMESPACE::roundf, float, (float));
137 #endif
138
139 #if GNULIB_TEST_ROUND
140 SIGNATURE_CHECK (GNULIB_NAMESPACE::round, double, (double));
141 #endif
142
143 #if GNULIB_TEST_ROUNDL
144 SIGNATURE_CHECK (GNULIB_NAMESPACE::roundl, long double, (long double));
145 #endif
146
147 #if GNULIB_TEST_SINL
148 SIGNATURE_CHECK (GNULIB_NAMESPACE::sinl, long double, (long double));
149 #endif
150
151 #if GNULIB_TEST_SQRTL
152 SIGNATURE_CHECK (GNULIB_NAMESPACE::sqrtl, long double, (long double));
153 #endif
154
155 #if GNULIB_TEST_TANL
156 SIGNATURE_CHECK (GNULIB_NAMESPACE::tanl, long double, (long double));
157 #endif
158
159 #if GNULIB_TEST_TRUNCF
160 SIGNATURE_CHECK (GNULIB_NAMESPACE::truncf, float, (float));
161 #endif
162
163 #if GNULIB_TEST_TRUNC
164 SIGNATURE_CHECK (GNULIB_NAMESPACE::trunc, double, (double));
165 #endif
166
167 #if GNULIB_TEST_TRUNCL
168 SIGNATURE_CHECK (GNULIB_NAMESPACE::truncl, long double, (long double));
169 #endif
170
171
172 int
173 main ()
174 {
175 }