New module 'hypotf'.
[gnulib.git] / lib / math.in.h
1 /* A GNU-like <math.h>.
2
3    Copyright (C) 2002-2003, 2007-2012 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #ifndef _@GUARD_PREFIX@_MATH_H
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23 @PRAGMA_COLUMNS@
24
25 /* The include_next requires a split double-inclusion guard.  */
26 #@INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ @NEXT_AS_FIRST_DIRECTIVE_MATH_H@
27
28 #ifndef _@GUARD_PREFIX@_MATH_H
29 #define _@GUARD_PREFIX@_MATH_H
30
31
32 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
33
34 /* The definition of _GL_ARG_NONNULL is copied here.  */
35
36 /* The definition of _GL_WARN_ON_USE is copied here.  */
37
38 #ifdef __cplusplus
39 /* Helper macros to define type-generic function FUNC as overloaded functions,
40    rather than as macros like in C.  POSIX declares these with an argument of
41    real-floating (that is, one of float, double, or long double).  */
42 # define _GL_MATH_CXX_REAL_FLOATING_DECL_1(func) \
43 static inline int                                                   \
44 _gl_cxx_ ## func ## f (float f)                                     \
45 {                                                                   \
46   return func (f);                                                  \
47 }                                                                   \
48 static inline int                                                   \
49 _gl_cxx_ ## func ## d (double d)                                    \
50 {                                                                   \
51   return func (d);                                                  \
52 }                                                                   \
53 static inline int                                                   \
54 _gl_cxx_ ## func ## l (long double l)                               \
55 {                                                                   \
56   return func (l);                                                  \
57 }
58 # define _GL_MATH_CXX_REAL_FLOATING_DECL_2(func) \
59 inline int                                                          \
60 func (float f)                                                      \
61 {                                                                   \
62   return _gl_cxx_ ## func ## f (f);                                 \
63 }                                                                   \
64 inline int                                                          \
65 func (double d)                                                     \
66 {                                                                   \
67   return _gl_cxx_ ## func ## d (d);                                 \
68 }                                                                   \
69 inline int                                                          \
70 func (long double l)                                                \
71 {                                                                   \
72   return _gl_cxx_ ## func ## l (l);                                 \
73 }
74 #endif
75
76 /* Helper macros to define a portability warning for the
77    classification macro FUNC called with VALUE.  POSIX declares the
78    classification macros with an argument of real-floating (that is,
79    one of float, double, or long double).  */
80 #define _GL_WARN_REAL_FLOATING_DECL(func) \
81 static inline int                                                   \
82 rpl_ ## func ## f (float f)                                         \
83 {                                                                   \
84   return func (f);                                                  \
85 }                                                                   \
86 static inline int                                                   \
87 rpl_ ## func ## d (double d)                                        \
88 {                                                                   \
89   return func (d);                                                  \
90 }                                                                   \
91 static inline int                                                   \
92 rpl_ ## func ## l (long double l)                                   \
93 {                                                                   \
94   return func (l);                                                  \
95 }                                                                   \
96 _GL_WARN_ON_USE (rpl_ ## func ## f, #func " is unportable - "       \
97                  "use gnulib module " #func " for portability");    \
98 _GL_WARN_ON_USE (rpl_ ## func ## d, #func " is unportable - "       \
99                  "use gnulib module " #func " for portability");    \
100 _GL_WARN_ON_USE (rpl_ ## func ## l, #func " is unportable - "       \
101                  "use gnulib module " #func " for portability")
102 #define _GL_WARN_REAL_FLOATING_IMPL(func, value) \
103   (sizeof (value) == sizeof (float) ? rpl_ ## func ## f (value)     \
104    : sizeof (value) == sizeof (double) ? rpl_ ## func ## d (value)  \
105    : rpl_ ## func ## l (value))
106
107
108 #if @REPLACE_ITOLD@
109 /* Pull in a function that fixes the 'int' to 'long double' conversion
110    of glibc 2.7.  */
111 _GL_EXTERN_C void _Qp_itoq (long double *, int);
112 static void (*_gl_math_fix_itold) (long double *, int) = _Qp_itoq;
113 #endif
114
115
116 /* POSIX allows platforms that don't support NAN.  But all major
117    machines in the past 15 years have supported something close to
118    IEEE NaN, so we define this unconditionally.  We also must define
119    it on platforms like Solaris 10, where NAN is present but defined
120    as a function pointer rather than a floating point constant.  */
121 #if !defined NAN || @REPLACE_NAN@
122 # if !GNULIB_defined_NAN
123 #  undef NAN
124   /* The Compaq (ex-DEC) C 6.4 compiler and the Microsoft MSVC 9 compiler
125      choke on the expression 0.0 / 0.0.  */
126 #  if defined __DECC || defined _MSC_VER
127 static float
128 _NaN ()
129 {
130   static float zero = 0.0f;
131   return zero / zero;
132 }
133 #   define NAN (_NaN())
134 #  else
135 #   define NAN (0.0f / 0.0f)
136 #  endif
137 #  define GNULIB_defined_NAN 1
138 # endif
139 #endif
140
141 /* Solaris 10 defines HUGE_VAL, but as a function pointer rather
142    than a floating point constant.  */
143 #if @REPLACE_HUGE_VAL@
144 # undef HUGE_VALF
145 # define HUGE_VALF (1.0f / 0.0f)
146 # undef HUGE_VAL
147 # define HUGE_VAL (1.0 / 0.0)
148 # undef HUGE_VALL
149 # define HUGE_VALL (1.0L / 0.0L)
150 #endif
151
152 /* HUGE_VALF is a 'float' Infinity.  */
153 #ifndef HUGE_VALF
154 # if defined _MSC_VER
155 /* The Microsoft MSVC 9 compiler chokes on the expression 1.0f / 0.0f.  */
156 #  define HUGE_VALF (1e25f * 1e25f)
157 # else
158 #  define HUGE_VALF (1.0f / 0.0f)
159 # endif
160 #endif
161
162 /* HUGE_VAL is a 'double' Infinity.  */
163 #ifndef HUGE_VAL
164 # if defined _MSC_VER
165 /* The Microsoft MSVC 9 compiler chokes on the expression 1.0 / 0.0.  */
166 #  define HUGE_VAL (1e250 * 1e250)
167 # else
168 #  define HUGE_VAL (1.0 / 0.0)
169 # endif
170 #endif
171
172 /* HUGE_VALL is a 'long double' Infinity.  */
173 #ifndef HUGE_VALL
174 # if defined _MSC_VER
175 /* The Microsoft MSVC 9 compiler chokes on the expression 1.0L / 0.0L.  */
176 #  define HUGE_VALL (1e250L * 1e250L)
177 # else
178 #  define HUGE_VALL (1.0L / 0.0L)
179 # endif
180 #endif
181
182 #if @GNULIB_ACOSF@
183 # if !@HAVE_ACOSF@
184 #  undef acosf
185 _GL_FUNCDECL_SYS (acosf, float, (float x));
186 # endif
187 _GL_CXXALIAS_SYS (acosf, float, (float x));
188 _GL_CXXALIASWARN (acosf);
189 #elif defined GNULIB_POSIXCHECK
190 # undef acosf
191 # if HAVE_RAW_DECL_ACOSF
192 _GL_WARN_ON_USE (acosf, "acosf is unportable - "
193                  "use gnulib module acosf for portability");
194 # endif
195 #endif
196
197 #if @GNULIB_ACOSL@
198 # if !@HAVE_ACOSL@ || !@HAVE_DECL_ACOSL@
199 #  undef acosl
200 _GL_FUNCDECL_SYS (acosl, long double, (long double x));
201 # endif
202 _GL_CXXALIAS_SYS (acosl, long double, (long double x));
203 _GL_CXXALIASWARN (acosl);
204 #elif defined GNULIB_POSIXCHECK
205 # undef acosl
206 # if HAVE_RAW_DECL_ACOSL
207 _GL_WARN_ON_USE (acosl, "acosl is unportable - "
208                  "use gnulib module mathl for portability");
209 # endif
210 #endif
211
212
213 #if @GNULIB_ASINF@
214 # if !@HAVE_ASINF@
215 #  undef asinf
216 _GL_FUNCDECL_SYS (asinf, float, (float x));
217 # endif
218 _GL_CXXALIAS_SYS (asinf, float, (float x));
219 _GL_CXXALIASWARN (asinf);
220 #elif defined GNULIB_POSIXCHECK
221 # undef asinf
222 # if HAVE_RAW_DECL_ASINF
223 _GL_WARN_ON_USE (asinf, "asinf is unportable - "
224                  "use gnulib module asinf for portability");
225 # endif
226 #endif
227
228 #if @GNULIB_ASINL@
229 # if !@HAVE_ASINL@ || !@HAVE_DECL_ASINL@
230 #  undef asinl
231 _GL_FUNCDECL_SYS (asinl, long double, (long double x));
232 # endif
233 _GL_CXXALIAS_SYS (asinl, long double, (long double x));
234 _GL_CXXALIASWARN (asinl);
235 #elif defined GNULIB_POSIXCHECK
236 # undef asinl
237 # if HAVE_RAW_DECL_ASINL
238 _GL_WARN_ON_USE (asinl, "asinl is unportable - "
239                  "use gnulib module mathl for portability");
240 # endif
241 #endif
242
243
244 #if @GNULIB_ATANF@
245 # if !@HAVE_ATANF@
246 #  undef atanf
247 _GL_FUNCDECL_SYS (atanf, float, (float x));
248 # endif
249 _GL_CXXALIAS_SYS (atanf, float, (float x));
250 _GL_CXXALIASWARN (atanf);
251 #elif defined GNULIB_POSIXCHECK
252 # undef atanf
253 # if HAVE_RAW_DECL_ATANF
254 _GL_WARN_ON_USE (atanf, "atanf is unportable - "
255                  "use gnulib module atanf for portability");
256 # endif
257 #endif
258
259 #if @GNULIB_ATANL@
260 # if !@HAVE_ATANL@ || !@HAVE_DECL_ATANL@
261 #  undef atanl
262 _GL_FUNCDECL_SYS (atanl, long double, (long double x));
263 # endif
264 _GL_CXXALIAS_SYS (atanl, long double, (long double x));
265 _GL_CXXALIASWARN (atanl);
266 #elif defined GNULIB_POSIXCHECK
267 # undef atanl
268 # if HAVE_RAW_DECL_ATANL
269 _GL_WARN_ON_USE (atanl, "atanl is unportable - "
270                  "use gnulib module mathl for portability");
271 # endif
272 #endif
273
274
275 #if @GNULIB_ATAN2F@
276 # if !@HAVE_ATAN2F@
277 #  undef atan2f
278 _GL_FUNCDECL_SYS (atan2f, float, (float y, float x));
279 # endif
280 _GL_CXXALIAS_SYS (atan2f, float, (float y, float x));
281 _GL_CXXALIASWARN (atan2f);
282 #elif defined GNULIB_POSIXCHECK
283 # undef atan2f
284 # if HAVE_RAW_DECL_ATAN2F
285 _GL_WARN_ON_USE (atan2f, "atan2f is unportable - "
286                  "use gnulib module atan2f for portability");
287 # endif
288 #endif
289
290
291 #if @GNULIB_CEILF@
292 # if @REPLACE_CEILF@
293 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
294 #   undef ceilf
295 #   define ceilf rpl_ceilf
296 #  endif
297 _GL_FUNCDECL_RPL (ceilf, float, (float x));
298 _GL_CXXALIAS_RPL (ceilf, float, (float x));
299 # else
300 #  if !@HAVE_DECL_CEILF@
301 #   undef ceilf
302 _GL_FUNCDECL_SYS (ceilf, float, (float x));
303 #  endif
304 _GL_CXXALIAS_SYS (ceilf, float, (float x));
305 # endif
306 _GL_CXXALIASWARN (ceilf);
307 #elif defined GNULIB_POSIXCHECK
308 # undef ceilf
309 # if HAVE_RAW_DECL_CEILF
310 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
311                  "use gnulib module ceilf for portability");
312 # endif
313 #endif
314
315 #if @GNULIB_CEIL@
316 # if @REPLACE_CEIL@
317 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
318 #   define ceil rpl_ceil
319 #  endif
320 _GL_FUNCDECL_RPL (ceil, double, (double x));
321 _GL_CXXALIAS_RPL (ceil, double, (double x));
322 # else
323 _GL_CXXALIAS_SYS (ceil, double, (double x));
324 # endif
325 _GL_CXXALIASWARN (ceil);
326 #endif
327
328 #if @GNULIB_CEILL@
329 # if @REPLACE_CEILL@
330 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
331 #   undef ceill
332 #   define ceill rpl_ceill
333 #  endif
334 _GL_FUNCDECL_RPL (ceill, long double, (long double x));
335 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
336 # else
337 #  if !@HAVE_DECL_CEILL@
338 #   undef ceill
339 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
340 #  endif
341 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
342 # endif
343 _GL_CXXALIASWARN (ceill);
344 #elif defined GNULIB_POSIXCHECK
345 # undef ceill
346 # if HAVE_RAW_DECL_CEILL
347 _GL_WARN_ON_USE (ceill, "ceill is unportable - "
348                  "use gnulib module ceill for portability");
349 # endif
350 #endif
351
352
353 #if @GNULIB_COPYSIGNF@
354 # if !@HAVE_COPYSIGNF@
355 _GL_FUNCDECL_SYS (copysignf, float, (float x, float y));
356 # endif
357 _GL_CXXALIAS_SYS (copysignf, float, (float x, float y));
358 _GL_CXXALIASWARN (copysignf);
359 #elif defined GNULIB_POSIXCHECK
360 # undef copysignf
361 # if HAVE_RAW_DECL_COPYSIGNF
362 _GL_WARN_ON_USE (copysignf, "copysignf is unportable - "
363                  "use gnulib module copysignf for portability");
364 # endif
365 #endif
366
367 #if @GNULIB_COPYSIGN@
368 # if !@HAVE_COPYSIGN@
369 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
370 # endif
371 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
372 _GL_CXXALIASWARN (copysign);
373 #elif defined GNULIB_POSIXCHECK
374 # undef copysign
375 # if HAVE_RAW_DECL_COPYSIGN
376 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
377                  "use gnulib module copysign for portability");
378 # endif
379 #endif
380
381 #if @GNULIB_COPYSIGNL@
382 # if !@HAVE_COPYSIGNL@
383 _GL_FUNCDECL_SYS (copysignl, long double, (long double x, long double y));
384 # endif
385 _GL_CXXALIAS_SYS (copysignl, long double, (long double x, long double y));
386 _GL_CXXALIASWARN (copysignl);
387 #elif defined GNULIB_POSIXCHECK
388 # undef copysignl
389 # if HAVE_RAW_DECL_COPYSIGNL
390 _GL_WARN_ON_USE (copysign, "copysignl is unportable - "
391                  "use gnulib module copysignl for portability");
392 # endif
393 #endif
394
395
396 #if @GNULIB_COSF@
397 # if !@HAVE_COSF@
398 #  undef cosf
399 _GL_FUNCDECL_SYS (cosf, float, (float x));
400 # endif
401 _GL_CXXALIAS_SYS (cosf, float, (float x));
402 _GL_CXXALIASWARN (cosf);
403 #elif defined GNULIB_POSIXCHECK
404 # undef cosf
405 # if HAVE_RAW_DECL_COSF
406 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
407                  "use gnulib module cosf for portability");
408 # endif
409 #endif
410
411 #if @GNULIB_COSL@
412 # if !@HAVE_COSL@ || !@HAVE_DECL_COSL@
413 #  undef cosl
414 _GL_FUNCDECL_SYS (cosl, long double, (long double x));
415 # endif
416 _GL_CXXALIAS_SYS (cosl, long double, (long double x));
417 _GL_CXXALIASWARN (cosl);
418 #elif defined GNULIB_POSIXCHECK
419 # undef cosl
420 # if HAVE_RAW_DECL_COSL
421 _GL_WARN_ON_USE (cosl, "cosl is unportable - "
422                  "use gnulib module mathl for portability");
423 # endif
424 #endif
425
426
427 #if @GNULIB_COSHF@
428 # if !@HAVE_COSHF@
429 #  undef coshf
430 _GL_FUNCDECL_SYS (coshf, float, (float x));
431 # endif
432 _GL_CXXALIAS_SYS (coshf, float, (float x));
433 _GL_CXXALIASWARN (coshf);
434 #elif defined GNULIB_POSIXCHECK
435 # undef coshf
436 # if HAVE_RAW_DECL_COSHF
437 _GL_WARN_ON_USE (coshf, "coshf is unportable - "
438                  "use gnulib module coshf for portability");
439 # endif
440 #endif
441
442
443 #if @GNULIB_EXPF@
444 # if !@HAVE_EXPF@
445 #  undef expf
446 _GL_FUNCDECL_SYS (expf, float, (float x));
447 # endif
448 _GL_CXXALIAS_SYS (expf, float, (float x));
449 _GL_CXXALIASWARN (expf);
450 #elif defined GNULIB_POSIXCHECK
451 # undef expf
452 # if HAVE_RAW_DECL_EXPF
453 _GL_WARN_ON_USE (expf, "expf is unportable - "
454                  "use gnulib module expf for portability");
455 # endif
456 #endif
457
458 #if @GNULIB_EXPL@
459 # if !@HAVE_EXPL@ || !@HAVE_DECL_EXPL@
460 #  undef expl
461 _GL_FUNCDECL_SYS (expl, long double, (long double x));
462 # endif
463 _GL_CXXALIAS_SYS (expl, long double, (long double x));
464 _GL_CXXALIASWARN (expl);
465 #elif defined GNULIB_POSIXCHECK
466 # undef expl
467 # if HAVE_RAW_DECL_EXPL
468 _GL_WARN_ON_USE (expl, "expl is unportable - "
469                  "use gnulib module mathl for portability");
470 # endif
471 #endif
472
473
474 #if @GNULIB_FABSF@
475 # if !@HAVE_FABSF@
476 #  undef fabsf
477 _GL_FUNCDECL_SYS (fabsf, float, (float x));
478 # endif
479 _GL_CXXALIAS_SYS (fabsf, float, (float x));
480 _GL_CXXALIASWARN (fabsf);
481 #elif defined GNULIB_POSIXCHECK
482 # undef fabsf
483 # if HAVE_RAW_DECL_FABSF
484 _GL_WARN_ON_USE (fabsf, "fabsf is unportable - "
485                  "use gnulib module fabsf for portability");
486 # endif
487 #endif
488
489 #if @GNULIB_FABSL@
490 # if @REPLACE_FABSL@
491 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
492 #   undef fabsl
493 #   define fabsl rpl_fabsl
494 #  endif
495 _GL_FUNCDECL_RPL (fabsl, long double, (long double x));
496 _GL_CXXALIAS_RPL (fabsl, long double, (long double x));
497 # else
498 #  if !@HAVE_FABSL@
499 #   undef fabsl
500 _GL_FUNCDECL_SYS (fabsl, long double, (long double x));
501 #  endif
502 _GL_CXXALIAS_SYS (fabsl, long double, (long double x));
503 # endif
504 _GL_CXXALIASWARN (fabsl);
505 #elif defined GNULIB_POSIXCHECK
506 # undef fabsl
507 # if HAVE_RAW_DECL_FABSL
508 _GL_WARN_ON_USE (fabsl, "fabsl is unportable - "
509                  "use gnulib module fabsl for portability");
510 # endif
511 #endif
512
513
514 #if @GNULIB_FLOORF@
515 # if @REPLACE_FLOORF@
516 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
517 #   undef floorf
518 #   define floorf rpl_floorf
519 #  endif
520 _GL_FUNCDECL_RPL (floorf, float, (float x));
521 _GL_CXXALIAS_RPL (floorf, float, (float x));
522 # else
523 #  if !@HAVE_DECL_FLOORF@
524 #   undef floorf
525 _GL_FUNCDECL_SYS (floorf, float, (float x));
526 #  endif
527 _GL_CXXALIAS_SYS (floorf, float, (float x));
528 # endif
529 _GL_CXXALIASWARN (floorf);
530 #elif defined GNULIB_POSIXCHECK
531 # undef floorf
532 # if HAVE_RAW_DECL_FLOORF
533 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
534                  "use gnulib module floorf for portability");
535 # endif
536 #endif
537
538 #if @GNULIB_FLOOR@
539 # if @REPLACE_FLOOR@
540 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
541 #   define floor rpl_floor
542 #  endif
543 _GL_FUNCDECL_RPL (floor, double, (double x));
544 _GL_CXXALIAS_RPL (floor, double, (double x));
545 # else
546 _GL_CXXALIAS_SYS (floor, double, (double x));
547 # endif
548 _GL_CXXALIASWARN (floor);
549 #endif
550
551 #if @GNULIB_FLOORL@
552 # if @REPLACE_FLOORL@
553 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
554 #   undef floorl
555 #   define floorl rpl_floorl
556 #  endif
557 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
558 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
559 # else
560 #  if !@HAVE_DECL_FLOORL@
561 #   undef floorl
562 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
563 #  endif
564 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
565 # endif
566 _GL_CXXALIASWARN (floorl);
567 #elif defined GNULIB_POSIXCHECK
568 # undef floorl
569 # if HAVE_RAW_DECL_FLOORL
570 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
571                  "use gnulib module floorl for portability");
572 # endif
573 #endif
574
575
576 #if @GNULIB_FMAF@
577 # if @REPLACE_FMAF@
578 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
579 #   undef fmaf
580 #   define fmaf rpl_fmaf
581 #  endif
582 _GL_FUNCDECL_RPL (fmaf, float, (float x, float y, float z));
583 _GL_CXXALIAS_RPL (fmaf, float, (float x, float y, float z));
584 # else
585 #  if !@HAVE_FMAF@
586 _GL_FUNCDECL_SYS (fmaf, float, (float x, float y, float z));
587 #  endif
588 _GL_CXXALIAS_SYS (fmaf, float, (float x, float y, float z));
589 # endif
590 _GL_CXXALIASWARN (fmaf);
591 #elif defined GNULIB_POSIXCHECK
592 # undef fmaf
593 # if HAVE_RAW_DECL_FMAF
594 _GL_WARN_ON_USE (fmaf, "fmaf is unportable - "
595                  "use gnulib module fmaf for portability");
596 # endif
597 #endif
598
599 #if @GNULIB_FMA@
600 # if @REPLACE_FMA@
601 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
602 #   undef fma
603 #   define fma rpl_fma
604 #  endif
605 _GL_FUNCDECL_RPL (fma, double, (double x, double y, double z));
606 _GL_CXXALIAS_RPL (fma, double, (double x, double y, double z));
607 # else
608 #  if !@HAVE_FMA@
609 _GL_FUNCDECL_SYS (fma, double, (double x, double y, double z));
610 #  endif
611 _GL_CXXALIAS_SYS (fma, double, (double x, double y, double z));
612 # endif
613 _GL_CXXALIASWARN (fma);
614 #elif defined GNULIB_POSIXCHECK
615 # undef fma
616 # if HAVE_RAW_DECL_FMA
617 _GL_WARN_ON_USE (fma, "fma is unportable - "
618                  "use gnulib module fma for portability");
619 # endif
620 #endif
621
622 #if @GNULIB_FMAL@
623 # if @REPLACE_FMAL@
624 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
625 #   undef fmal
626 #   define fmal rpl_fmal
627 #  endif
628 _GL_FUNCDECL_RPL (fmal, long double,
629                   (long double x, long double y, long double z));
630 _GL_CXXALIAS_RPL (fmal, long double,
631                   (long double x, long double y, long double z));
632 # else
633 #  if !@HAVE_FMAL@
634 _GL_FUNCDECL_SYS (fmal, long double,
635                   (long double x, long double y, long double z));
636 #  endif
637 _GL_CXXALIAS_SYS (fmal, long double,
638                   (long double x, long double y, long double z));
639 # endif
640 _GL_CXXALIASWARN (fmal);
641 #elif defined GNULIB_POSIXCHECK
642 # undef fmal
643 # if HAVE_RAW_DECL_FMAL
644 _GL_WARN_ON_USE (fmal, "fmal is unportable - "
645                  "use gnulib module fmal for portability");
646 # endif
647 #endif
648
649
650 #if @GNULIB_FMODF@
651 # if @REPLACE_FMODF@
652 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
653 #   undef fmodf
654 #   define fmodf rpl_fmodf
655 #  endif
656 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y));
657 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y));
658 # else
659 #  if !@HAVE_FMODF@
660 #   undef fmodf
661 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
662 #  endif
663 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
664 # endif
665 _GL_CXXALIASWARN (fmodf);
666 #elif defined GNULIB_POSIXCHECK
667 # undef fmodf
668 # if HAVE_RAW_DECL_FMODF
669 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
670                  "use gnulib module fmodf for portability");
671 # endif
672 #endif
673
674 #if @GNULIB_FMOD@
675 # if @REPLACE_FMOD@
676 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
677 #   undef fmod
678 #   define fmod rpl_fmod
679 #  endif
680 _GL_FUNCDECL_RPL (fmod, double, (double x, double y));
681 _GL_CXXALIAS_RPL (fmod, double, (double x, double y));
682 # else
683 _GL_CXXALIAS_SYS (fmod, double, (double x, double y));
684 # endif
685 _GL_CXXALIASWARN (fmod);
686 #elif defined GNULIB_POSIXCHECK
687 # undef fmod
688 # if HAVE_RAW_DECL_FMOD
689 _GL_WARN_ON_USE (fmod, "fmod has portability problems - "
690                  "use gnulib module fmod for portability");
691 # endif
692 #endif
693
694 #if @GNULIB_FMODL@
695 # if @REPLACE_FMODL@
696 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
697 #   undef fmodl
698 #   define fmodl rpl_fmodl
699 #  endif
700 _GL_FUNCDECL_RPL (fmodl, long double, (long double x, long double y));
701 _GL_CXXALIAS_RPL (fmodl, long double, (long double x, long double y));
702 # else
703 #  if !@HAVE_FMODL@
704 #   undef fmodl
705 _GL_FUNCDECL_SYS (fmodl, long double, (long double x, long double y));
706 #  endif
707 _GL_CXXALIAS_SYS (fmodl, long double, (long double x, long double y));
708 # endif
709 _GL_CXXALIASWARN (fmodl);
710 #elif defined GNULIB_POSIXCHECK
711 # undef fmodl
712 # if HAVE_RAW_DECL_FMODL
713 _GL_WARN_ON_USE (fmodl, "fmodl is unportable - "
714                  "use gnulib module fmodl for portability");
715 # endif
716 #endif
717
718
719 /* Write x as
720      x = mantissa * 2^exp
721    where
722      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
723      If x is zero: mantissa = x, exp = 0.
724      If x is infinite or NaN: mantissa = x, exp unspecified.
725    Store exp in *EXPPTR and return mantissa.  */
726 #if @GNULIB_FREXPF@
727 # if @REPLACE_FREXPF@
728 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
729 #   undef frexpf
730 #   define frexpf rpl_frexpf
731 #  endif
732 _GL_FUNCDECL_RPL (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
733 _GL_CXXALIAS_RPL (frexpf, float, (float x, int *expptr));
734 # else
735 #  if !@HAVE_FREXPF@
736 #   undef frexpf
737 _GL_FUNCDECL_SYS (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
738 #  endif
739 _GL_CXXALIAS_SYS (frexpf, float, (float x, int *expptr));
740 # endif
741 _GL_CXXALIASWARN (frexpf);
742 #elif defined GNULIB_POSIXCHECK
743 # undef frexpf
744 # if HAVE_RAW_DECL_FREXPF
745 _GL_WARN_ON_USE (frexpf, "frexpf is unportable - "
746                  "use gnulib module frexpf for portability");
747 # endif
748 #endif
749
750 /* Write x as
751      x = mantissa * 2^exp
752    where
753      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
754      If x is zero: mantissa = x, exp = 0.
755      If x is infinite or NaN: mantissa = x, exp unspecified.
756    Store exp in *EXPPTR and return mantissa.  */
757 #if @GNULIB_FREXP@
758 # if @REPLACE_FREXP@
759 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
760 #   define frexp rpl_frexp
761 #  endif
762 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
763 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
764 # else
765 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
766 # endif
767 _GL_CXXALIASWARN (frexp);
768 #elif defined GNULIB_POSIXCHECK
769 # undef frexp
770 /* Assume frexp is always declared.  */
771 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
772                  "use gnulib module frexp for portability");
773 #endif
774
775 /* Write x as
776      x = mantissa * 2^exp
777    where
778      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
779      If x is zero: mantissa = x, exp = 0.
780      If x is infinite or NaN: mantissa = x, exp unspecified.
781    Store exp in *EXPPTR and return mantissa.  */
782 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
783 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
784 #  undef frexpl
785 #  define frexpl rpl_frexpl
786 # endif
787 _GL_FUNCDECL_RPL (frexpl, long double,
788                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
789 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
790 #else
791 # if !@HAVE_DECL_FREXPL@
792 _GL_FUNCDECL_SYS (frexpl, long double,
793                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
794 # endif
795 # if @GNULIB_FREXPL@
796 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
797 # endif
798 #endif
799 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
800 _GL_CXXALIASWARN (frexpl);
801 #endif
802 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
803 # undef frexpl
804 # if HAVE_RAW_DECL_FREXPL
805 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
806                  "use gnulib module frexpl for portability");
807 # endif
808 #endif
809
810
811 /* Return sqrt(x^2+y^2).  */
812 #if @GNULIB_HYPOTF@
813 # if @REPLACE_HYPOTF@
814 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
815 #   undef hypotf
816 #   define hypotf rpl_hypotf
817 #  endif
818 _GL_FUNCDECL_RPL (hypotf, float, (float x, float y));
819 _GL_CXXALIAS_RPL (hypotf, float, (float x, float y));
820 # else
821 #  if !@HAVE_HYPOTF@
822 _GL_FUNCDECL_SYS (hypotf, float, (float x, float y));
823 #  endif
824 _GL_CXXALIAS_SYS (hypotf, float, (float x, float y));
825 # endif
826 _GL_CXXALIASWARN (hypotf);
827 #elif defined GNULIB_POSIXCHECK
828 # undef hypotf
829 # if HAVE_RAW_DECL_HYPOTF
830 _GL_WARN_ON_USE (hypotf, "hypotf is unportable - "
831                  "use gnulib module hypotf for portability");
832 # endif
833 #endif
834
835
836 /* Return x * 2^exp.  */
837 #if @GNULIB_LDEXPF@
838 # if !@HAVE_LDEXPF@
839 #  undef ldexpf
840 _GL_FUNCDECL_SYS (ldexpf, float, (float x, int exp));
841 # endif
842 _GL_CXXALIAS_SYS (ldexpf, float, (float x, int exp));
843 _GL_CXXALIASWARN (ldexpf);
844 #elif defined GNULIB_POSIXCHECK
845 # undef ldexpf
846 # if HAVE_RAW_DECL_LDEXPF
847 _GL_WARN_ON_USE (ldexpf, "ldexpf is unportable - "
848                  "use gnulib module ldexpf for portability");
849 # endif
850 #endif
851
852 /* Return x * 2^exp.  */
853 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
854 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
855 #  undef ldexpl
856 #  define ldexpl rpl_ldexpl
857 # endif
858 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
859 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
860 #else
861 # if !@HAVE_DECL_LDEXPL@
862 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
863 # endif
864 # if @GNULIB_LDEXPL@
865 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
866 # endif
867 #endif
868 #if @GNULIB_LDEXPL@
869 _GL_CXXALIASWARN (ldexpl);
870 #endif
871 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
872 # undef ldexpl
873 # if HAVE_RAW_DECL_LDEXPL
874 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
875                  "use gnulib module ldexpl for portability");
876 # endif
877 #endif
878
879
880 #if @GNULIB_LOGB@
881 # if !@HAVE_DECL_LOGB@
882 _GL_EXTERN_C double logb (double x);
883 # endif
884 #elif defined GNULIB_POSIXCHECK
885 # undef logb
886 # if HAVE_RAW_DECL_LOGB
887 _GL_WARN_ON_USE (logb, "logb is unportable - "
888                  "use gnulib module logb for portability");
889 # endif
890 #endif
891
892
893 #if @GNULIB_LOGF@
894 # if !@HAVE_LOGF@
895 #  undef logf
896 _GL_FUNCDECL_SYS (logf, float, (float x));
897 # endif
898 _GL_CXXALIAS_SYS (logf, float, (float x));
899 _GL_CXXALIASWARN (logf);
900 #elif defined GNULIB_POSIXCHECK
901 # undef logf
902 # if HAVE_RAW_DECL_LOGF
903 _GL_WARN_ON_USE (logf, "logf is unportable - "
904                  "use gnulib module logf for portability");
905 # endif
906 #endif
907
908 #if @GNULIB_LOGL@
909 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
910 #  undef logl
911 _GL_FUNCDECL_SYS (logl, long double, (long double x));
912 # endif
913 _GL_CXXALIAS_SYS (logl, long double, (long double x));
914 _GL_CXXALIASWARN (logl);
915 #elif defined GNULIB_POSIXCHECK
916 # undef logl
917 # if HAVE_RAW_DECL_LOGL
918 _GL_WARN_ON_USE (logl, "logl is unportable - "
919                  "use gnulib module mathl for portability");
920 # endif
921 #endif
922
923
924 #if @GNULIB_LOG10F@
925 # if !@HAVE_LOG10F@
926 #  undef log10f
927 _GL_FUNCDECL_SYS (log10f, float, (float x));
928 # endif
929 _GL_CXXALIAS_SYS (log10f, float, (float x));
930 _GL_CXXALIASWARN (log10f);
931 #elif defined GNULIB_POSIXCHECK
932 # undef log10f
933 # if HAVE_RAW_DECL_LOG10F
934 _GL_WARN_ON_USE (log10f, "log10f is unportable - "
935                  "use gnulib module log10f for portability");
936 # endif
937 #endif
938
939 #if @GNULIB_LOG10L@
940 # if !@HAVE_LOG10L@ || !@HAVE_DECL_LOG10L@
941 #  undef log10l
942 _GL_FUNCDECL_SYS (log10l, long double, (long double x));
943 # endif
944 _GL_CXXALIAS_SYS (log10l, long double, (long double x));
945 _GL_CXXALIASWARN (log10l);
946 #elif defined GNULIB_POSIXCHECK
947 # undef log10l
948 # if HAVE_RAW_DECL_LOG10L
949 _GL_WARN_ON_USE (log10l, "log10l is unportable - "
950                  "use gnulib module log10l for portability");
951 # endif
952 #endif
953
954
955 #if @GNULIB_MODFF@
956 # if @REPLACE_MODFF@
957 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
958 #   undef modff
959 #   define modff rpl_modff
960 #  endif
961 _GL_FUNCDECL_RPL (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
962 _GL_CXXALIAS_RPL (modff, float, (float x, float *iptr));
963 # else
964 #  if !@HAVE_MODFF@
965 #   undef modff
966 _GL_FUNCDECL_SYS (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
967 #  endif
968 _GL_CXXALIAS_SYS (modff, float, (float x, float *iptr));
969 # endif
970 _GL_CXXALIASWARN (modff);
971 #elif defined GNULIB_POSIXCHECK
972 # undef modff
973 # if HAVE_RAW_DECL_MODFF
974 _GL_WARN_ON_USE (modff, "modff is unportable - "
975                  "use gnulib module modff for portability");
976 # endif
977 #endif
978
979 #if @GNULIB_MODF@
980 # if @REPLACE_MODF@
981 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
982 #   undef modf
983 #   define modf rpl_modf
984 #  endif
985 _GL_FUNCDECL_RPL (modf, double, (double x, double *iptr) _GL_ARG_NONNULL ((2)));
986 _GL_CXXALIAS_RPL (modf, double, (double x, double *iptr));
987 # else
988 _GL_CXXALIAS_SYS (modf, double, (double x, double *iptr));
989 # endif
990 _GL_CXXALIASWARN (modf);
991 #elif defined GNULIB_POSIXCHECK
992 # undef modf
993 # if HAVE_RAW_DECL_MODF
994 _GL_WARN_ON_USE (modf, "modf has portability problems - "
995                  "use gnulib module modf for portability");
996 # endif
997 #endif
998
999 #if @GNULIB_MODFL@
1000 # if @REPLACE_MODFL@
1001 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1002 #   undef modfl
1003 #   define modfl rpl_modfl
1004 #  endif
1005 _GL_FUNCDECL_RPL (modfl, long double, (long double x, long double *iptr)
1006                                       _GL_ARG_NONNULL ((2)));
1007 _GL_CXXALIAS_RPL (modfl, long double, (long double x, long double *iptr));
1008 # else
1009 #  if !@HAVE_MODFL@
1010 #   undef modfl
1011 _GL_FUNCDECL_SYS (modfl, long double, (long double x, long double *iptr)
1012                                       _GL_ARG_NONNULL ((2)));
1013 #  endif
1014 _GL_CXXALIAS_SYS (modfl, long double, (long double x, long double *iptr));
1015 # endif
1016 _GL_CXXALIASWARN (modfl);
1017 #elif defined GNULIB_POSIXCHECK
1018 # undef modfl
1019 # if HAVE_RAW_DECL_MODFL
1020 _GL_WARN_ON_USE (modfl, "modfl is unportable - "
1021                  "use gnulib module modfl for portability");
1022 # endif
1023 #endif
1024
1025
1026 #if @GNULIB_POWF@
1027 # if !@HAVE_POWF@
1028 #  undef powf
1029 _GL_FUNCDECL_SYS (powf, float, (float x, float y));
1030 # endif
1031 _GL_CXXALIAS_SYS (powf, float, (float x, float y));
1032 _GL_CXXALIASWARN (powf);
1033 #elif defined GNULIB_POSIXCHECK
1034 # undef powf
1035 # if HAVE_RAW_DECL_POWF
1036 _GL_WARN_ON_USE (powf, "powf is unportable - "
1037                  "use gnulib module powf for portability");
1038 # endif
1039 #endif
1040
1041
1042 #if @GNULIB_REMAINDERF@
1043 # if @REPLACE_REMAINDERF@
1044 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1045 #   undef remainderf
1046 #   define remainderf rpl_remainderf
1047 #  endif
1048 _GL_FUNCDECL_RPL (remainderf, float, (float x, float y));
1049 _GL_CXXALIAS_RPL (remainderf, float, (float x, float y));
1050 # else
1051 #  if !@HAVE_REMAINDERF@
1052 _GL_FUNCDECL_SYS (remainderf, float, (float x, float y));
1053 #  endif
1054 _GL_CXXALIAS_SYS (remainderf, float, (float x, float y));
1055 # endif
1056 _GL_CXXALIASWARN (remainderf);
1057 #elif defined GNULIB_POSIXCHECK
1058 # undef remainderf
1059 # if HAVE_RAW_DECL_REMAINDERF
1060 _GL_WARN_ON_USE (remainderf, "remainderf is unportable - "
1061                  "use gnulib module remainderf for portability");
1062 # endif
1063 #endif
1064
1065 #if @GNULIB_REMAINDER@
1066 # if @REPLACE_REMAINDER@
1067 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1068 #   undef remainder
1069 #   define remainder rpl_remainder
1070 #  endif
1071 _GL_FUNCDECL_RPL (remainder, double, (double x, double y));
1072 _GL_CXXALIAS_RPL (remainder, double, (double x, double y));
1073 # else
1074 #  if !@HAVE_REMAINDER@ || !@HAVE_DECL_REMAINDER@
1075 _GL_FUNCDECL_SYS (remainder, double, (double x, double y));
1076 #  endif
1077 _GL_CXXALIAS_SYS (remainder, double, (double x, double y));
1078 # endif
1079 _GL_CXXALIASWARN (remainder);
1080 #elif defined GNULIB_POSIXCHECK
1081 # undef remainder
1082 # if HAVE_RAW_DECL_REMAINDER
1083 _GL_WARN_ON_USE (remainder, "remainder is unportable - "
1084                  "use gnulib module remainder for portability");
1085 # endif
1086 #endif
1087
1088 #if @GNULIB_REMAINDERL@
1089 # if @REPLACE_REMAINDERL@
1090 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1091 #   undef remainderl
1092 #   define remainderl rpl_remainderl
1093 #  endif
1094 _GL_FUNCDECL_RPL (remainderl, long double, (long double x, long double y));
1095 _GL_CXXALIAS_RPL (remainderl, long double, (long double x, long double y));
1096 # else
1097 #  if !@HAVE_REMAINDERL@
1098 _GL_FUNCDECL_SYS (remainderl, long double, (long double x, long double y));
1099 #  endif
1100 _GL_CXXALIAS_SYS (remainderl, long double, (long double x, long double y));
1101 # endif
1102 _GL_CXXALIASWARN (remainderl);
1103 #elif defined GNULIB_POSIXCHECK
1104 # undef remainderl
1105 # if HAVE_RAW_DECL_REMAINDERL
1106 _GL_WARN_ON_USE (remainderl, "remainderl is unportable - "
1107                  "use gnulib module remainderl for portability");
1108 # endif
1109 #endif
1110
1111
1112 #if @GNULIB_RINTF@
1113 # if !@HAVE_RINTF@
1114 _GL_FUNCDECL_SYS (rintf, float, (float x));
1115 # endif
1116 _GL_CXXALIAS_SYS (rintf, float, (float x));
1117 _GL_CXXALIASWARN (rintf);
1118 #elif defined GNULIB_POSIXCHECK
1119 # undef rintf
1120 # if HAVE_RAW_DECL_RINTF
1121 _GL_WARN_ON_USE (rintf, "rintf is unportable - "
1122                  "use gnulib module rintf for portability");
1123 # endif
1124 #endif
1125
1126 #if @GNULIB_RINT@
1127 # if !@HAVE_RINT@
1128 _GL_FUNCDECL_SYS (rint, double, (double x));
1129 # endif
1130 _GL_CXXALIAS_SYS (rint, double, (double x));
1131 _GL_CXXALIASWARN (rint);
1132 #elif defined GNULIB_POSIXCHECK
1133 # undef rint
1134 # if HAVE_RAW_DECL_RINT
1135 _GL_WARN_ON_USE (rint, "rint is unportable - "
1136                  "use gnulib module rint for portability");
1137 # endif
1138 #endif
1139
1140 #if @GNULIB_RINTL@
1141 # if !@HAVE_RINTL@
1142 _GL_FUNCDECL_SYS (rintl, long double, (long double x));
1143 # endif
1144 _GL_CXXALIAS_SYS (rintl, long double, (long double x));
1145 _GL_CXXALIASWARN (rintl);
1146 #elif defined GNULIB_POSIXCHECK
1147 # undef rintl
1148 # if HAVE_RAW_DECL_RINTL
1149 _GL_WARN_ON_USE (rintl, "rintl is unportable - "
1150                  "use gnulib module rintl for portability");
1151 # endif
1152 #endif
1153
1154
1155 #if @GNULIB_ROUNDF@
1156 # if @REPLACE_ROUNDF@
1157 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1158 #   undef roundf
1159 #   define roundf rpl_roundf
1160 #  endif
1161 _GL_FUNCDECL_RPL (roundf, float, (float x));
1162 _GL_CXXALIAS_RPL (roundf, float, (float x));
1163 # else
1164 #  if !@HAVE_DECL_ROUNDF@
1165 _GL_FUNCDECL_SYS (roundf, float, (float x));
1166 #  endif
1167 _GL_CXXALIAS_SYS (roundf, float, (float x));
1168 # endif
1169 _GL_CXXALIASWARN (roundf);
1170 #elif defined GNULIB_POSIXCHECK
1171 # undef roundf
1172 # if HAVE_RAW_DECL_ROUNDF
1173 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
1174                  "use gnulib module roundf for portability");
1175 # endif
1176 #endif
1177
1178 #if @GNULIB_ROUND@
1179 # if @REPLACE_ROUND@
1180 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1181 #   undef round
1182 #   define round rpl_round
1183 #  endif
1184 _GL_FUNCDECL_RPL (round, double, (double x));
1185 _GL_CXXALIAS_RPL (round, double, (double x));
1186 # else
1187 #  if !@HAVE_DECL_ROUND@
1188 _GL_FUNCDECL_SYS (round, double, (double x));
1189 #  endif
1190 _GL_CXXALIAS_SYS (round, double, (double x));
1191 # endif
1192 _GL_CXXALIASWARN (round);
1193 #elif defined GNULIB_POSIXCHECK
1194 # undef round
1195 # if HAVE_RAW_DECL_ROUND
1196 _GL_WARN_ON_USE (round, "round is unportable - "
1197                  "use gnulib module round for portability");
1198 # endif
1199 #endif
1200
1201 #if @GNULIB_ROUNDL@
1202 # if @REPLACE_ROUNDL@
1203 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1204 #   undef roundl
1205 #   define roundl rpl_roundl
1206 #  endif
1207 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
1208 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
1209 # else
1210 #  if !@HAVE_DECL_ROUNDL@
1211 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
1212 #  endif
1213 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
1214 # endif
1215 _GL_CXXALIASWARN (roundl);
1216 #elif defined GNULIB_POSIXCHECK
1217 # undef roundl
1218 # if HAVE_RAW_DECL_ROUNDL
1219 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
1220                  "use gnulib module roundl for portability");
1221 # endif
1222 #endif
1223
1224
1225 #if @GNULIB_SINF@
1226 # if !@HAVE_SINF@
1227 #  undef sinf
1228 _GL_FUNCDECL_SYS (sinf, float, (float x));
1229 # endif
1230 _GL_CXXALIAS_SYS (sinf, float, (float x));
1231 _GL_CXXALIASWARN (sinf);
1232 #elif defined GNULIB_POSIXCHECK
1233 # undef sinf
1234 # if HAVE_RAW_DECL_SINF
1235 _GL_WARN_ON_USE (sinf, "sinf is unportable - "
1236                  "use gnulib module sinf for portability");
1237 # endif
1238 #endif
1239
1240 #if @GNULIB_SINL@
1241 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
1242 #  undef sinl
1243 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
1244 # endif
1245 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
1246 _GL_CXXALIASWARN (sinl);
1247 #elif defined GNULIB_POSIXCHECK
1248 # undef sinl
1249 # if HAVE_RAW_DECL_SINL
1250 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
1251                  "use gnulib module mathl for portability");
1252 # endif
1253 #endif
1254
1255
1256 #if @GNULIB_SINHF@
1257 # if !@HAVE_SINHF@
1258 #  undef sinhf
1259 _GL_FUNCDECL_SYS (sinhf, float, (float x));
1260 # endif
1261 _GL_CXXALIAS_SYS (sinhf, float, (float x));
1262 _GL_CXXALIASWARN (sinhf);
1263 #elif defined GNULIB_POSIXCHECK
1264 # undef sinhf
1265 # if HAVE_RAW_DECL_SINHF
1266 _GL_WARN_ON_USE (sinhf, "sinhf is unportable - "
1267                  "use gnulib module sinhf for portability");
1268 # endif
1269 #endif
1270
1271
1272 #if @GNULIB_SQRTF@
1273 # if !@HAVE_SQRTF@
1274 #  undef sqrtf
1275 _GL_FUNCDECL_SYS (sqrtf, float, (float x));
1276 # endif
1277 _GL_CXXALIAS_SYS (sqrtf, float, (float x));
1278 _GL_CXXALIASWARN (sqrtf);
1279 #elif defined GNULIB_POSIXCHECK
1280 # undef sqrtf
1281 # if HAVE_RAW_DECL_SQRTF
1282 _GL_WARN_ON_USE (sqrtf, "sqrtf is unportable - "
1283                  "use gnulib module sqrtf for portability");
1284 # endif
1285 #endif
1286
1287 #if @GNULIB_SQRTL@
1288 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
1289 #  undef sqrtl
1290 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
1291 # endif
1292 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
1293 _GL_CXXALIASWARN (sqrtl);
1294 #elif defined GNULIB_POSIXCHECK
1295 # undef sqrtl
1296 # if HAVE_RAW_DECL_SQRTL
1297 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
1298                  "use gnulib module mathl for portability");
1299 # endif
1300 #endif
1301
1302
1303 #if @GNULIB_TANF@
1304 # if !@HAVE_TANF@
1305 #  undef tanf
1306 _GL_FUNCDECL_SYS (tanf, float, (float x));
1307 # endif
1308 _GL_CXXALIAS_SYS (tanf, float, (float x));
1309 _GL_CXXALIASWARN (tanf);
1310 #elif defined GNULIB_POSIXCHECK
1311 # undef tanf
1312 # if HAVE_RAW_DECL_TANF
1313 _GL_WARN_ON_USE (tanf, "tanf is unportable - "
1314                  "use gnulib module tanf for portability");
1315 # endif
1316 #endif
1317
1318 #if @GNULIB_TANL@
1319 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
1320 #  undef tanl
1321 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
1322 # endif
1323 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
1324 _GL_CXXALIASWARN (tanl);
1325 #elif defined GNULIB_POSIXCHECK
1326 # undef tanl
1327 # if HAVE_RAW_DECL_TANL
1328 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
1329                  "use gnulib module mathl for portability");
1330 # endif
1331 #endif
1332
1333
1334 #if @GNULIB_TANHF@
1335 # if !@HAVE_TANHF@
1336 #  undef tanhf
1337 _GL_FUNCDECL_SYS (tanhf, float, (float x));
1338 # endif
1339 _GL_CXXALIAS_SYS (tanhf, float, (float x));
1340 _GL_CXXALIASWARN (tanhf);
1341 #elif defined GNULIB_POSIXCHECK
1342 # undef tanhf
1343 # if HAVE_RAW_DECL_TANHF
1344 _GL_WARN_ON_USE (tanhf, "tanhf is unportable - "
1345                  "use gnulib module tanhf for portability");
1346 # endif
1347 #endif
1348
1349
1350 #if @GNULIB_TRUNCF@
1351 # if @REPLACE_TRUNCF@
1352 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1353 #   define truncf rpl_truncf
1354 #  endif
1355 _GL_FUNCDECL_RPL (truncf, float, (float x));
1356 _GL_CXXALIAS_RPL (truncf, float, (float x));
1357 # else
1358 #  if !@HAVE_DECL_TRUNCF@
1359 _GL_FUNCDECL_SYS (truncf, float, (float x));
1360 #  endif
1361 _GL_CXXALIAS_SYS (truncf, float, (float x));
1362 # endif
1363 _GL_CXXALIASWARN (truncf);
1364 #elif defined GNULIB_POSIXCHECK
1365 # undef truncf
1366 # if HAVE_RAW_DECL_TRUNCF
1367 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
1368                  "use gnulib module truncf for portability");
1369 # endif
1370 #endif
1371
1372 #if @GNULIB_TRUNC@
1373 # if @REPLACE_TRUNC@
1374 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1375 #   define trunc rpl_trunc
1376 #  endif
1377 _GL_FUNCDECL_RPL (trunc, double, (double x));
1378 _GL_CXXALIAS_RPL (trunc, double, (double x));
1379 # else
1380 #  if !@HAVE_DECL_TRUNC@
1381 _GL_FUNCDECL_SYS (trunc, double, (double x));
1382 #  endif
1383 _GL_CXXALIAS_SYS (trunc, double, (double x));
1384 # endif
1385 _GL_CXXALIASWARN (trunc);
1386 #elif defined GNULIB_POSIXCHECK
1387 # undef trunc
1388 # if HAVE_RAW_DECL_TRUNC
1389 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
1390                  "use gnulib module trunc for portability");
1391 # endif
1392 #endif
1393
1394 #if @GNULIB_TRUNCL@
1395 # if @REPLACE_TRUNCL@
1396 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1397 #   undef truncl
1398 #   define truncl rpl_truncl
1399 #  endif
1400 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
1401 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
1402 # else
1403 #  if !@HAVE_DECL_TRUNCL@
1404 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
1405 #  endif
1406 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
1407 # endif
1408 _GL_CXXALIASWARN (truncl);
1409 #elif defined GNULIB_POSIXCHECK
1410 # undef truncl
1411 # if HAVE_RAW_DECL_TRUNCL
1412 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
1413                  "use gnulib module truncl for portability");
1414 # endif
1415 #endif
1416
1417
1418 /* Definitions of function-like macros come here, after the function
1419    declarations.  */
1420
1421
1422 #if @GNULIB_ISFINITE@
1423 # if @REPLACE_ISFINITE@
1424 _GL_EXTERN_C int gl_isfinitef (float x);
1425 _GL_EXTERN_C int gl_isfinited (double x);
1426 _GL_EXTERN_C int gl_isfinitel (long double x);
1427 #  undef isfinite
1428 #  define isfinite(x) \
1429    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
1430     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
1431     gl_isfinitef (x))
1432 # endif
1433 # ifdef __cplusplus
1434 #  ifdef isfinite
1435 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isfinite)
1436 #   undef isfinite
1437 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isfinite)
1438 #  endif
1439 # endif
1440 #elif defined GNULIB_POSIXCHECK
1441 # if defined isfinite
1442 _GL_WARN_REAL_FLOATING_DECL (isfinite);
1443 #  undef isfinite
1444 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
1445 # endif
1446 #endif
1447
1448
1449 #if @GNULIB_ISINF@
1450 # if @REPLACE_ISINF@
1451 _GL_EXTERN_C int gl_isinff (float x);
1452 _GL_EXTERN_C int gl_isinfd (double x);
1453 _GL_EXTERN_C int gl_isinfl (long double x);
1454 #  undef isinf
1455 #  define isinf(x) \
1456    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
1457     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
1458     gl_isinff (x))
1459 # endif
1460 # ifdef __cplusplus
1461 #  ifdef isinf
1462 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
1463 #   undef isinf
1464 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
1465 #  endif
1466 # endif
1467 #elif defined GNULIB_POSIXCHECK
1468 # if defined isinf
1469 _GL_WARN_REAL_FLOATING_DECL (isinf);
1470 #  undef isinf
1471 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
1472 # endif
1473 #endif
1474
1475
1476 #if @GNULIB_ISNANF@
1477 /* Test for NaN for 'float' numbers.  */
1478 # if @HAVE_ISNANF@
1479 /* The original <math.h> included above provides a declaration of isnan macro
1480    or (older) isnanf function.  */
1481 #  if __GNUC__ >= 4
1482     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1483 #   undef isnanf
1484 #   define isnanf(x) __builtin_isnanf ((float)(x))
1485 #  elif defined isnan
1486 #   undef isnanf
1487 #   define isnanf(x) isnan ((float)(x))
1488 #  endif
1489 # else
1490 /* Test whether X is a NaN.  */
1491 #  undef isnanf
1492 #  define isnanf rpl_isnanf
1493 _GL_EXTERN_C int isnanf (float x);
1494 # endif
1495 #endif
1496
1497 #if @GNULIB_ISNAND@
1498 /* Test for NaN for 'double' numbers.
1499    This function is a gnulib extension, unlike isnan() which applied only
1500    to 'double' numbers earlier but now is a type-generic macro.  */
1501 # if @HAVE_ISNAND@
1502 /* The original <math.h> included above provides a declaration of isnan
1503    macro.  */
1504 #  if __GNUC__ >= 4
1505     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1506 #   undef isnand
1507 #   define isnand(x) __builtin_isnan ((double)(x))
1508 #  else
1509 #   undef isnand
1510 #   define isnand(x) isnan ((double)(x))
1511 #  endif
1512 # else
1513 /* Test whether X is a NaN.  */
1514 #  undef isnand
1515 #  define isnand rpl_isnand
1516 _GL_EXTERN_C int isnand (double x);
1517 # endif
1518 #endif
1519
1520 #if @GNULIB_ISNANL@
1521 /* Test for NaN for 'long double' numbers.  */
1522 # if @HAVE_ISNANL@
1523 /* The original <math.h> included above provides a declaration of isnan
1524    macro or (older) isnanl function.  */
1525 #  if __GNUC__ >= 4
1526     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1527 #   undef isnanl
1528 #   define isnanl(x) __builtin_isnanl ((long double)(x))
1529 #  elif defined isnan
1530 #   undef isnanl
1531 #   define isnanl(x) isnan ((long double)(x))
1532 #  endif
1533 # else
1534 /* Test whether X is a NaN.  */
1535 #  undef isnanl
1536 #  define isnanl rpl_isnanl
1537 _GL_EXTERN_C int isnanl (long double x) _GL_ATTRIBUTE_CONST;
1538 # endif
1539 #endif
1540
1541 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
1542 #if @GNULIB_ISNAN@
1543 # if @REPLACE_ISNAN@
1544 /* We can't just use the isnanf macro (e.g.) as exposed by
1545    isnanf.h (e.g.) here, because those may end up being macros
1546    that recursively expand back to isnan.  So use the gnulib
1547    replacements for them directly. */
1548 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
1549 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
1550 #  else
1551 _GL_EXTERN_C int rpl_isnanf (float x);
1552 #   define gl_isnan_f(x) rpl_isnanf (x)
1553 #  endif
1554 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
1555 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
1556 #  else
1557 _GL_EXTERN_C int rpl_isnand (double x);
1558 #   define gl_isnan_d(x) rpl_isnand (x)
1559 #  endif
1560 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
1561 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
1562 #  else
1563 _GL_EXTERN_C int rpl_isnanl (long double x) _GL_ATTRIBUTE_CONST;
1564 #   define gl_isnan_l(x) rpl_isnanl (x)
1565 #  endif
1566 #  undef isnan
1567 #  define isnan(x) \
1568    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
1569     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
1570     gl_isnan_f (x))
1571 # elif __GNUC__ >= 4
1572 #  undef isnan
1573 #  define isnan(x) \
1574    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
1575     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
1576     __builtin_isnanf ((float)(x)))
1577 # endif
1578 # ifdef __cplusplus
1579 #  ifdef isnan
1580 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isnan)
1581 #   undef isnan
1582 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan)
1583 #  endif
1584 # else
1585 /* Ensure isnan is a macro.  */
1586 #  ifndef isnan
1587 #   define isnan isnan
1588 #  endif
1589 # endif
1590 #elif defined GNULIB_POSIXCHECK
1591 # if defined isnan
1592 _GL_WARN_REAL_FLOATING_DECL (isnan);
1593 #  undef isnan
1594 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
1595 # endif
1596 #endif
1597
1598
1599 #if @GNULIB_SIGNBIT@
1600 # if @REPLACE_SIGNBIT_USING_GCC@
1601 #  undef signbit
1602    /* GCC 4.0 and newer provides three built-ins for signbit.  */
1603 #  define signbit(x) \
1604    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
1605     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
1606     __builtin_signbitf (x))
1607 # endif
1608 # if @REPLACE_SIGNBIT@
1609 #  undef signbit
1610 _GL_EXTERN_C int gl_signbitf (float arg);
1611 _GL_EXTERN_C int gl_signbitd (double arg);
1612 _GL_EXTERN_C int gl_signbitl (long double arg);
1613 #  if __GNUC__ >= 2 && !defined __STRICT_ANSI__
1614 #   define _GL_NUM_UINT_WORDS(type) \
1615       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
1616 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
1617 #    define gl_signbitf_OPTIMIZED_MACRO
1618 #    define gl_signbitf(arg) \
1619        ({ union { float _value;                                         \
1620                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
1621                 } _m;                                                   \
1622           _m._value = (arg);                                            \
1623           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
1624         })
1625 #   endif
1626 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
1627 #    define gl_signbitd_OPTIMIZED_MACRO
1628 #    define gl_signbitd(arg) \
1629        ({ union { double _value;                                        \
1630                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
1631                 } _m;                                                   \
1632           _m._value = (arg);                                            \
1633           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
1634         })
1635 #   endif
1636 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
1637 #    define gl_signbitl_OPTIMIZED_MACRO
1638 #    define gl_signbitl(arg) \
1639        ({ union { long double _value;                                   \
1640                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
1641                 } _m;                                                   \
1642           _m._value = (arg);                                            \
1643           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
1644         })
1645 #   endif
1646 #  endif
1647 #  define signbit(x) \
1648    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
1649     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
1650     gl_signbitf (x))
1651 # endif
1652 # ifdef __cplusplus
1653 #  ifdef signbit
1654 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
1655 #   undef signbit
1656 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
1657 #  endif
1658 # endif
1659 #elif defined GNULIB_POSIXCHECK
1660 # if defined signbit
1661 _GL_WARN_REAL_FLOATING_DECL (signbit);
1662 #  undef signbit
1663 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
1664 # endif
1665 #endif
1666
1667
1668 #endif /* _@GUARD_PREFIX@_MATH_H */
1669 #endif /* _@GUARD_PREFIX@_MATH_H */