hypot-ieee: Work around test failure on OSF/1 and native Windows.
[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 /* Return sqrt(x^2+y^2).  */
836 #if @GNULIB_HYPOT@
837 # if @REPLACE_HYPOT@
838 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
839 #   undef hypot
840 #   define hypot rpl_hypot
841 #  endif
842 _GL_FUNCDECL_RPL (hypot, double, (double x, double y));
843 _GL_CXXALIAS_RPL (hypot, double, (double x, double y));
844 # else
845 _GL_CXXALIAS_SYS (hypot, double, (double x, double y));
846 # endif
847 _GL_CXXALIASWARN (hypot);
848 #elif defined GNULIB_POSIXCHECK
849 # undef hypot
850 # if HAVE_RAW_DECL_HYPOT
851 _GL_WARN_ON_USE (hypotf, "hypot has portability problems - "
852                  "use gnulib module hypot for portability");
853 # endif
854 #endif
855
856 /* Return sqrt(x^2+y^2).  */
857 #if @GNULIB_HYPOTL@
858 # if !@HAVE_HYPOTL@
859 _GL_FUNCDECL_SYS (hypotl, long double, (long double x, long double y));
860 # endif
861 _GL_CXXALIAS_SYS (hypotl, long double, (long double x, long double y));
862 _GL_CXXALIASWARN (hypotl);
863 #elif defined GNULIB_POSIXCHECK
864 # undef hypotl
865 # if HAVE_RAW_DECL_HYPOTL
866 _GL_WARN_ON_USE (hypotl, "hypotl is unportable - "
867                  "use gnulib module hypotl for portability");
868 # endif
869 #endif
870
871
872 /* Return x * 2^exp.  */
873 #if @GNULIB_LDEXPF@
874 # if !@HAVE_LDEXPF@
875 #  undef ldexpf
876 _GL_FUNCDECL_SYS (ldexpf, float, (float x, int exp));
877 # endif
878 _GL_CXXALIAS_SYS (ldexpf, float, (float x, int exp));
879 _GL_CXXALIASWARN (ldexpf);
880 #elif defined GNULIB_POSIXCHECK
881 # undef ldexpf
882 # if HAVE_RAW_DECL_LDEXPF
883 _GL_WARN_ON_USE (ldexpf, "ldexpf is unportable - "
884                  "use gnulib module ldexpf for portability");
885 # endif
886 #endif
887
888 /* Return x * 2^exp.  */
889 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
890 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
891 #  undef ldexpl
892 #  define ldexpl rpl_ldexpl
893 # endif
894 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
895 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
896 #else
897 # if !@HAVE_DECL_LDEXPL@
898 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
899 # endif
900 # if @GNULIB_LDEXPL@
901 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
902 # endif
903 #endif
904 #if @GNULIB_LDEXPL@
905 _GL_CXXALIASWARN (ldexpl);
906 #endif
907 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
908 # undef ldexpl
909 # if HAVE_RAW_DECL_LDEXPL
910 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
911                  "use gnulib module ldexpl for portability");
912 # endif
913 #endif
914
915
916 #if @GNULIB_LOGB@
917 # if !@HAVE_DECL_LOGB@
918 _GL_EXTERN_C double logb (double x);
919 # endif
920 #elif defined GNULIB_POSIXCHECK
921 # undef logb
922 # if HAVE_RAW_DECL_LOGB
923 _GL_WARN_ON_USE (logb, "logb is unportable - "
924                  "use gnulib module logb for portability");
925 # endif
926 #endif
927
928
929 #if @GNULIB_LOGF@
930 # if !@HAVE_LOGF@
931 #  undef logf
932 _GL_FUNCDECL_SYS (logf, float, (float x));
933 # endif
934 _GL_CXXALIAS_SYS (logf, float, (float x));
935 _GL_CXXALIASWARN (logf);
936 #elif defined GNULIB_POSIXCHECK
937 # undef logf
938 # if HAVE_RAW_DECL_LOGF
939 _GL_WARN_ON_USE (logf, "logf is unportable - "
940                  "use gnulib module logf for portability");
941 # endif
942 #endif
943
944 #if @GNULIB_LOGL@
945 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
946 #  undef logl
947 _GL_FUNCDECL_SYS (logl, long double, (long double x));
948 # endif
949 _GL_CXXALIAS_SYS (logl, long double, (long double x));
950 _GL_CXXALIASWARN (logl);
951 #elif defined GNULIB_POSIXCHECK
952 # undef logl
953 # if HAVE_RAW_DECL_LOGL
954 _GL_WARN_ON_USE (logl, "logl is unportable - "
955                  "use gnulib module mathl for portability");
956 # endif
957 #endif
958
959
960 #if @GNULIB_LOG10F@
961 # if !@HAVE_LOG10F@
962 #  undef log10f
963 _GL_FUNCDECL_SYS (log10f, float, (float x));
964 # endif
965 _GL_CXXALIAS_SYS (log10f, float, (float x));
966 _GL_CXXALIASWARN (log10f);
967 #elif defined GNULIB_POSIXCHECK
968 # undef log10f
969 # if HAVE_RAW_DECL_LOG10F
970 _GL_WARN_ON_USE (log10f, "log10f is unportable - "
971                  "use gnulib module log10f for portability");
972 # endif
973 #endif
974
975 #if @GNULIB_LOG10L@
976 # if !@HAVE_LOG10L@ || !@HAVE_DECL_LOG10L@
977 #  undef log10l
978 _GL_FUNCDECL_SYS (log10l, long double, (long double x));
979 # endif
980 _GL_CXXALIAS_SYS (log10l, long double, (long double x));
981 _GL_CXXALIASWARN (log10l);
982 #elif defined GNULIB_POSIXCHECK
983 # undef log10l
984 # if HAVE_RAW_DECL_LOG10L
985 _GL_WARN_ON_USE (log10l, "log10l is unportable - "
986                  "use gnulib module log10l for portability");
987 # endif
988 #endif
989
990
991 #if @GNULIB_MODFF@
992 # if @REPLACE_MODFF@
993 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
994 #   undef modff
995 #   define modff rpl_modff
996 #  endif
997 _GL_FUNCDECL_RPL (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
998 _GL_CXXALIAS_RPL (modff, float, (float x, float *iptr));
999 # else
1000 #  if !@HAVE_MODFF@
1001 #   undef modff
1002 _GL_FUNCDECL_SYS (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
1003 #  endif
1004 _GL_CXXALIAS_SYS (modff, float, (float x, float *iptr));
1005 # endif
1006 _GL_CXXALIASWARN (modff);
1007 #elif defined GNULIB_POSIXCHECK
1008 # undef modff
1009 # if HAVE_RAW_DECL_MODFF
1010 _GL_WARN_ON_USE (modff, "modff is unportable - "
1011                  "use gnulib module modff for portability");
1012 # endif
1013 #endif
1014
1015 #if @GNULIB_MODF@
1016 # if @REPLACE_MODF@
1017 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1018 #   undef modf
1019 #   define modf rpl_modf
1020 #  endif
1021 _GL_FUNCDECL_RPL (modf, double, (double x, double *iptr) _GL_ARG_NONNULL ((2)));
1022 _GL_CXXALIAS_RPL (modf, double, (double x, double *iptr));
1023 # else
1024 _GL_CXXALIAS_SYS (modf, double, (double x, double *iptr));
1025 # endif
1026 _GL_CXXALIASWARN (modf);
1027 #elif defined GNULIB_POSIXCHECK
1028 # undef modf
1029 # if HAVE_RAW_DECL_MODF
1030 _GL_WARN_ON_USE (modf, "modf has portability problems - "
1031                  "use gnulib module modf for portability");
1032 # endif
1033 #endif
1034
1035 #if @GNULIB_MODFL@
1036 # if @REPLACE_MODFL@
1037 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1038 #   undef modfl
1039 #   define modfl rpl_modfl
1040 #  endif
1041 _GL_FUNCDECL_RPL (modfl, long double, (long double x, long double *iptr)
1042                                       _GL_ARG_NONNULL ((2)));
1043 _GL_CXXALIAS_RPL (modfl, long double, (long double x, long double *iptr));
1044 # else
1045 #  if !@HAVE_MODFL@
1046 #   undef modfl
1047 _GL_FUNCDECL_SYS (modfl, long double, (long double x, long double *iptr)
1048                                       _GL_ARG_NONNULL ((2)));
1049 #  endif
1050 _GL_CXXALIAS_SYS (modfl, long double, (long double x, long double *iptr));
1051 # endif
1052 _GL_CXXALIASWARN (modfl);
1053 #elif defined GNULIB_POSIXCHECK
1054 # undef modfl
1055 # if HAVE_RAW_DECL_MODFL
1056 _GL_WARN_ON_USE (modfl, "modfl is unportable - "
1057                  "use gnulib module modfl for portability");
1058 # endif
1059 #endif
1060
1061
1062 #if @GNULIB_POWF@
1063 # if !@HAVE_POWF@
1064 #  undef powf
1065 _GL_FUNCDECL_SYS (powf, float, (float x, float y));
1066 # endif
1067 _GL_CXXALIAS_SYS (powf, float, (float x, float y));
1068 _GL_CXXALIASWARN (powf);
1069 #elif defined GNULIB_POSIXCHECK
1070 # undef powf
1071 # if HAVE_RAW_DECL_POWF
1072 _GL_WARN_ON_USE (powf, "powf is unportable - "
1073                  "use gnulib module powf for portability");
1074 # endif
1075 #endif
1076
1077
1078 #if @GNULIB_REMAINDERF@
1079 # if @REPLACE_REMAINDERF@
1080 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1081 #   undef remainderf
1082 #   define remainderf rpl_remainderf
1083 #  endif
1084 _GL_FUNCDECL_RPL (remainderf, float, (float x, float y));
1085 _GL_CXXALIAS_RPL (remainderf, float, (float x, float y));
1086 # else
1087 #  if !@HAVE_REMAINDERF@
1088 _GL_FUNCDECL_SYS (remainderf, float, (float x, float y));
1089 #  endif
1090 _GL_CXXALIAS_SYS (remainderf, float, (float x, float y));
1091 # endif
1092 _GL_CXXALIASWARN (remainderf);
1093 #elif defined GNULIB_POSIXCHECK
1094 # undef remainderf
1095 # if HAVE_RAW_DECL_REMAINDERF
1096 _GL_WARN_ON_USE (remainderf, "remainderf is unportable - "
1097                  "use gnulib module remainderf for portability");
1098 # endif
1099 #endif
1100
1101 #if @GNULIB_REMAINDER@
1102 # if @REPLACE_REMAINDER@
1103 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1104 #   undef remainder
1105 #   define remainder rpl_remainder
1106 #  endif
1107 _GL_FUNCDECL_RPL (remainder, double, (double x, double y));
1108 _GL_CXXALIAS_RPL (remainder, double, (double x, double y));
1109 # else
1110 #  if !@HAVE_REMAINDER@ || !@HAVE_DECL_REMAINDER@
1111 _GL_FUNCDECL_SYS (remainder, double, (double x, double y));
1112 #  endif
1113 _GL_CXXALIAS_SYS (remainder, double, (double x, double y));
1114 # endif
1115 _GL_CXXALIASWARN (remainder);
1116 #elif defined GNULIB_POSIXCHECK
1117 # undef remainder
1118 # if HAVE_RAW_DECL_REMAINDER
1119 _GL_WARN_ON_USE (remainder, "remainder is unportable - "
1120                  "use gnulib module remainder for portability");
1121 # endif
1122 #endif
1123
1124 #if @GNULIB_REMAINDERL@
1125 # if @REPLACE_REMAINDERL@
1126 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1127 #   undef remainderl
1128 #   define remainderl rpl_remainderl
1129 #  endif
1130 _GL_FUNCDECL_RPL (remainderl, long double, (long double x, long double y));
1131 _GL_CXXALIAS_RPL (remainderl, long double, (long double x, long double y));
1132 # else
1133 #  if !@HAVE_REMAINDERL@
1134 _GL_FUNCDECL_SYS (remainderl, long double, (long double x, long double y));
1135 #  endif
1136 _GL_CXXALIAS_SYS (remainderl, long double, (long double x, long double y));
1137 # endif
1138 _GL_CXXALIASWARN (remainderl);
1139 #elif defined GNULIB_POSIXCHECK
1140 # undef remainderl
1141 # if HAVE_RAW_DECL_REMAINDERL
1142 _GL_WARN_ON_USE (remainderl, "remainderl is unportable - "
1143                  "use gnulib module remainderl for portability");
1144 # endif
1145 #endif
1146
1147
1148 #if @GNULIB_RINTF@
1149 # if !@HAVE_RINTF@
1150 _GL_FUNCDECL_SYS (rintf, float, (float x));
1151 # endif
1152 _GL_CXXALIAS_SYS (rintf, float, (float x));
1153 _GL_CXXALIASWARN (rintf);
1154 #elif defined GNULIB_POSIXCHECK
1155 # undef rintf
1156 # if HAVE_RAW_DECL_RINTF
1157 _GL_WARN_ON_USE (rintf, "rintf is unportable - "
1158                  "use gnulib module rintf for portability");
1159 # endif
1160 #endif
1161
1162 #if @GNULIB_RINT@
1163 # if !@HAVE_RINT@
1164 _GL_FUNCDECL_SYS (rint, double, (double x));
1165 # endif
1166 _GL_CXXALIAS_SYS (rint, double, (double x));
1167 _GL_CXXALIASWARN (rint);
1168 #elif defined GNULIB_POSIXCHECK
1169 # undef rint
1170 # if HAVE_RAW_DECL_RINT
1171 _GL_WARN_ON_USE (rint, "rint is unportable - "
1172                  "use gnulib module rint for portability");
1173 # endif
1174 #endif
1175
1176 #if @GNULIB_RINTL@
1177 # if !@HAVE_RINTL@
1178 _GL_FUNCDECL_SYS (rintl, long double, (long double x));
1179 # endif
1180 _GL_CXXALIAS_SYS (rintl, long double, (long double x));
1181 _GL_CXXALIASWARN (rintl);
1182 #elif defined GNULIB_POSIXCHECK
1183 # undef rintl
1184 # if HAVE_RAW_DECL_RINTL
1185 _GL_WARN_ON_USE (rintl, "rintl is unportable - "
1186                  "use gnulib module rintl for portability");
1187 # endif
1188 #endif
1189
1190
1191 #if @GNULIB_ROUNDF@
1192 # if @REPLACE_ROUNDF@
1193 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1194 #   undef roundf
1195 #   define roundf rpl_roundf
1196 #  endif
1197 _GL_FUNCDECL_RPL (roundf, float, (float x));
1198 _GL_CXXALIAS_RPL (roundf, float, (float x));
1199 # else
1200 #  if !@HAVE_DECL_ROUNDF@
1201 _GL_FUNCDECL_SYS (roundf, float, (float x));
1202 #  endif
1203 _GL_CXXALIAS_SYS (roundf, float, (float x));
1204 # endif
1205 _GL_CXXALIASWARN (roundf);
1206 #elif defined GNULIB_POSIXCHECK
1207 # undef roundf
1208 # if HAVE_RAW_DECL_ROUNDF
1209 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
1210                  "use gnulib module roundf for portability");
1211 # endif
1212 #endif
1213
1214 #if @GNULIB_ROUND@
1215 # if @REPLACE_ROUND@
1216 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1217 #   undef round
1218 #   define round rpl_round
1219 #  endif
1220 _GL_FUNCDECL_RPL (round, double, (double x));
1221 _GL_CXXALIAS_RPL (round, double, (double x));
1222 # else
1223 #  if !@HAVE_DECL_ROUND@
1224 _GL_FUNCDECL_SYS (round, double, (double x));
1225 #  endif
1226 _GL_CXXALIAS_SYS (round, double, (double x));
1227 # endif
1228 _GL_CXXALIASWARN (round);
1229 #elif defined GNULIB_POSIXCHECK
1230 # undef round
1231 # if HAVE_RAW_DECL_ROUND
1232 _GL_WARN_ON_USE (round, "round is unportable - "
1233                  "use gnulib module round for portability");
1234 # endif
1235 #endif
1236
1237 #if @GNULIB_ROUNDL@
1238 # if @REPLACE_ROUNDL@
1239 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1240 #   undef roundl
1241 #   define roundl rpl_roundl
1242 #  endif
1243 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
1244 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
1245 # else
1246 #  if !@HAVE_DECL_ROUNDL@
1247 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
1248 #  endif
1249 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
1250 # endif
1251 _GL_CXXALIASWARN (roundl);
1252 #elif defined GNULIB_POSIXCHECK
1253 # undef roundl
1254 # if HAVE_RAW_DECL_ROUNDL
1255 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
1256                  "use gnulib module roundl for portability");
1257 # endif
1258 #endif
1259
1260
1261 #if @GNULIB_SINF@
1262 # if !@HAVE_SINF@
1263 #  undef sinf
1264 _GL_FUNCDECL_SYS (sinf, float, (float x));
1265 # endif
1266 _GL_CXXALIAS_SYS (sinf, float, (float x));
1267 _GL_CXXALIASWARN (sinf);
1268 #elif defined GNULIB_POSIXCHECK
1269 # undef sinf
1270 # if HAVE_RAW_DECL_SINF
1271 _GL_WARN_ON_USE (sinf, "sinf is unportable - "
1272                  "use gnulib module sinf for portability");
1273 # endif
1274 #endif
1275
1276 #if @GNULIB_SINL@
1277 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
1278 #  undef sinl
1279 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
1280 # endif
1281 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
1282 _GL_CXXALIASWARN (sinl);
1283 #elif defined GNULIB_POSIXCHECK
1284 # undef sinl
1285 # if HAVE_RAW_DECL_SINL
1286 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
1287                  "use gnulib module mathl for portability");
1288 # endif
1289 #endif
1290
1291
1292 #if @GNULIB_SINHF@
1293 # if !@HAVE_SINHF@
1294 #  undef sinhf
1295 _GL_FUNCDECL_SYS (sinhf, float, (float x));
1296 # endif
1297 _GL_CXXALIAS_SYS (sinhf, float, (float x));
1298 _GL_CXXALIASWARN (sinhf);
1299 #elif defined GNULIB_POSIXCHECK
1300 # undef sinhf
1301 # if HAVE_RAW_DECL_SINHF
1302 _GL_WARN_ON_USE (sinhf, "sinhf is unportable - "
1303                  "use gnulib module sinhf for portability");
1304 # endif
1305 #endif
1306
1307
1308 #if @GNULIB_SQRTF@
1309 # if !@HAVE_SQRTF@
1310 #  undef sqrtf
1311 _GL_FUNCDECL_SYS (sqrtf, float, (float x));
1312 # endif
1313 _GL_CXXALIAS_SYS (sqrtf, float, (float x));
1314 _GL_CXXALIASWARN (sqrtf);
1315 #elif defined GNULIB_POSIXCHECK
1316 # undef sqrtf
1317 # if HAVE_RAW_DECL_SQRTF
1318 _GL_WARN_ON_USE (sqrtf, "sqrtf is unportable - "
1319                  "use gnulib module sqrtf for portability");
1320 # endif
1321 #endif
1322
1323 #if @GNULIB_SQRTL@
1324 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
1325 #  undef sqrtl
1326 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
1327 # endif
1328 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
1329 _GL_CXXALIASWARN (sqrtl);
1330 #elif defined GNULIB_POSIXCHECK
1331 # undef sqrtl
1332 # if HAVE_RAW_DECL_SQRTL
1333 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
1334                  "use gnulib module mathl for portability");
1335 # endif
1336 #endif
1337
1338
1339 #if @GNULIB_TANF@
1340 # if !@HAVE_TANF@
1341 #  undef tanf
1342 _GL_FUNCDECL_SYS (tanf, float, (float x));
1343 # endif
1344 _GL_CXXALIAS_SYS (tanf, float, (float x));
1345 _GL_CXXALIASWARN (tanf);
1346 #elif defined GNULIB_POSIXCHECK
1347 # undef tanf
1348 # if HAVE_RAW_DECL_TANF
1349 _GL_WARN_ON_USE (tanf, "tanf is unportable - "
1350                  "use gnulib module tanf for portability");
1351 # endif
1352 #endif
1353
1354 #if @GNULIB_TANL@
1355 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
1356 #  undef tanl
1357 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
1358 # endif
1359 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
1360 _GL_CXXALIASWARN (tanl);
1361 #elif defined GNULIB_POSIXCHECK
1362 # undef tanl
1363 # if HAVE_RAW_DECL_TANL
1364 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
1365                  "use gnulib module mathl for portability");
1366 # endif
1367 #endif
1368
1369
1370 #if @GNULIB_TANHF@
1371 # if !@HAVE_TANHF@
1372 #  undef tanhf
1373 _GL_FUNCDECL_SYS (tanhf, float, (float x));
1374 # endif
1375 _GL_CXXALIAS_SYS (tanhf, float, (float x));
1376 _GL_CXXALIASWARN (tanhf);
1377 #elif defined GNULIB_POSIXCHECK
1378 # undef tanhf
1379 # if HAVE_RAW_DECL_TANHF
1380 _GL_WARN_ON_USE (tanhf, "tanhf is unportable - "
1381                  "use gnulib module tanhf for portability");
1382 # endif
1383 #endif
1384
1385
1386 #if @GNULIB_TRUNCF@
1387 # if @REPLACE_TRUNCF@
1388 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1389 #   define truncf rpl_truncf
1390 #  endif
1391 _GL_FUNCDECL_RPL (truncf, float, (float x));
1392 _GL_CXXALIAS_RPL (truncf, float, (float x));
1393 # else
1394 #  if !@HAVE_DECL_TRUNCF@
1395 _GL_FUNCDECL_SYS (truncf, float, (float x));
1396 #  endif
1397 _GL_CXXALIAS_SYS (truncf, float, (float x));
1398 # endif
1399 _GL_CXXALIASWARN (truncf);
1400 #elif defined GNULIB_POSIXCHECK
1401 # undef truncf
1402 # if HAVE_RAW_DECL_TRUNCF
1403 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
1404                  "use gnulib module truncf for portability");
1405 # endif
1406 #endif
1407
1408 #if @GNULIB_TRUNC@
1409 # if @REPLACE_TRUNC@
1410 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1411 #   define trunc rpl_trunc
1412 #  endif
1413 _GL_FUNCDECL_RPL (trunc, double, (double x));
1414 _GL_CXXALIAS_RPL (trunc, double, (double x));
1415 # else
1416 #  if !@HAVE_DECL_TRUNC@
1417 _GL_FUNCDECL_SYS (trunc, double, (double x));
1418 #  endif
1419 _GL_CXXALIAS_SYS (trunc, double, (double x));
1420 # endif
1421 _GL_CXXALIASWARN (trunc);
1422 #elif defined GNULIB_POSIXCHECK
1423 # undef trunc
1424 # if HAVE_RAW_DECL_TRUNC
1425 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
1426                  "use gnulib module trunc for portability");
1427 # endif
1428 #endif
1429
1430 #if @GNULIB_TRUNCL@
1431 # if @REPLACE_TRUNCL@
1432 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1433 #   undef truncl
1434 #   define truncl rpl_truncl
1435 #  endif
1436 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
1437 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
1438 # else
1439 #  if !@HAVE_DECL_TRUNCL@
1440 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
1441 #  endif
1442 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
1443 # endif
1444 _GL_CXXALIASWARN (truncl);
1445 #elif defined GNULIB_POSIXCHECK
1446 # undef truncl
1447 # if HAVE_RAW_DECL_TRUNCL
1448 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
1449                  "use gnulib module truncl for portability");
1450 # endif
1451 #endif
1452
1453
1454 /* Definitions of function-like macros come here, after the function
1455    declarations.  */
1456
1457
1458 #if @GNULIB_ISFINITE@
1459 # if @REPLACE_ISFINITE@
1460 _GL_EXTERN_C int gl_isfinitef (float x);
1461 _GL_EXTERN_C int gl_isfinited (double x);
1462 _GL_EXTERN_C int gl_isfinitel (long double x);
1463 #  undef isfinite
1464 #  define isfinite(x) \
1465    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
1466     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
1467     gl_isfinitef (x))
1468 # endif
1469 # ifdef __cplusplus
1470 #  ifdef isfinite
1471 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isfinite)
1472 #   undef isfinite
1473 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isfinite)
1474 #  endif
1475 # endif
1476 #elif defined GNULIB_POSIXCHECK
1477 # if defined isfinite
1478 _GL_WARN_REAL_FLOATING_DECL (isfinite);
1479 #  undef isfinite
1480 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
1481 # endif
1482 #endif
1483
1484
1485 #if @GNULIB_ISINF@
1486 # if @REPLACE_ISINF@
1487 _GL_EXTERN_C int gl_isinff (float x);
1488 _GL_EXTERN_C int gl_isinfd (double x);
1489 _GL_EXTERN_C int gl_isinfl (long double x);
1490 #  undef isinf
1491 #  define isinf(x) \
1492    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
1493     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
1494     gl_isinff (x))
1495 # endif
1496 # ifdef __cplusplus
1497 #  ifdef isinf
1498 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
1499 #   undef isinf
1500 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
1501 #  endif
1502 # endif
1503 #elif defined GNULIB_POSIXCHECK
1504 # if defined isinf
1505 _GL_WARN_REAL_FLOATING_DECL (isinf);
1506 #  undef isinf
1507 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
1508 # endif
1509 #endif
1510
1511
1512 #if @GNULIB_ISNANF@
1513 /* Test for NaN for 'float' numbers.  */
1514 # if @HAVE_ISNANF@
1515 /* The original <math.h> included above provides a declaration of isnan macro
1516    or (older) isnanf function.  */
1517 #  if __GNUC__ >= 4
1518     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1519 #   undef isnanf
1520 #   define isnanf(x) __builtin_isnanf ((float)(x))
1521 #  elif defined isnan
1522 #   undef isnanf
1523 #   define isnanf(x) isnan ((float)(x))
1524 #  endif
1525 # else
1526 /* Test whether X is a NaN.  */
1527 #  undef isnanf
1528 #  define isnanf rpl_isnanf
1529 _GL_EXTERN_C int isnanf (float x);
1530 # endif
1531 #endif
1532
1533 #if @GNULIB_ISNAND@
1534 /* Test for NaN for 'double' numbers.
1535    This function is a gnulib extension, unlike isnan() which applied only
1536    to 'double' numbers earlier but now is a type-generic macro.  */
1537 # if @HAVE_ISNAND@
1538 /* The original <math.h> included above provides a declaration of isnan
1539    macro.  */
1540 #  if __GNUC__ >= 4
1541     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1542 #   undef isnand
1543 #   define isnand(x) __builtin_isnan ((double)(x))
1544 #  else
1545 #   undef isnand
1546 #   define isnand(x) isnan ((double)(x))
1547 #  endif
1548 # else
1549 /* Test whether X is a NaN.  */
1550 #  undef isnand
1551 #  define isnand rpl_isnand
1552 _GL_EXTERN_C int isnand (double x);
1553 # endif
1554 #endif
1555
1556 #if @GNULIB_ISNANL@
1557 /* Test for NaN for 'long double' numbers.  */
1558 # if @HAVE_ISNANL@
1559 /* The original <math.h> included above provides a declaration of isnan
1560    macro or (older) isnanl function.  */
1561 #  if __GNUC__ >= 4
1562     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1563 #   undef isnanl
1564 #   define isnanl(x) __builtin_isnanl ((long double)(x))
1565 #  elif defined isnan
1566 #   undef isnanl
1567 #   define isnanl(x) isnan ((long double)(x))
1568 #  endif
1569 # else
1570 /* Test whether X is a NaN.  */
1571 #  undef isnanl
1572 #  define isnanl rpl_isnanl
1573 _GL_EXTERN_C int isnanl (long double x) _GL_ATTRIBUTE_CONST;
1574 # endif
1575 #endif
1576
1577 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
1578 #if @GNULIB_ISNAN@
1579 # if @REPLACE_ISNAN@
1580 /* We can't just use the isnanf macro (e.g.) as exposed by
1581    isnanf.h (e.g.) here, because those may end up being macros
1582    that recursively expand back to isnan.  So use the gnulib
1583    replacements for them directly. */
1584 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
1585 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
1586 #  else
1587 _GL_EXTERN_C int rpl_isnanf (float x);
1588 #   define gl_isnan_f(x) rpl_isnanf (x)
1589 #  endif
1590 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
1591 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
1592 #  else
1593 _GL_EXTERN_C int rpl_isnand (double x);
1594 #   define gl_isnan_d(x) rpl_isnand (x)
1595 #  endif
1596 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
1597 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
1598 #  else
1599 _GL_EXTERN_C int rpl_isnanl (long double x) _GL_ATTRIBUTE_CONST;
1600 #   define gl_isnan_l(x) rpl_isnanl (x)
1601 #  endif
1602 #  undef isnan
1603 #  define isnan(x) \
1604    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
1605     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
1606     gl_isnan_f (x))
1607 # elif __GNUC__ >= 4
1608 #  undef isnan
1609 #  define isnan(x) \
1610    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
1611     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
1612     __builtin_isnanf ((float)(x)))
1613 # endif
1614 # ifdef __cplusplus
1615 #  ifdef isnan
1616 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isnan)
1617 #   undef isnan
1618 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan)
1619 #  endif
1620 # else
1621 /* Ensure isnan is a macro.  */
1622 #  ifndef isnan
1623 #   define isnan isnan
1624 #  endif
1625 # endif
1626 #elif defined GNULIB_POSIXCHECK
1627 # if defined isnan
1628 _GL_WARN_REAL_FLOATING_DECL (isnan);
1629 #  undef isnan
1630 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
1631 # endif
1632 #endif
1633
1634
1635 #if @GNULIB_SIGNBIT@
1636 # if @REPLACE_SIGNBIT_USING_GCC@
1637 #  undef signbit
1638    /* GCC 4.0 and newer provides three built-ins for signbit.  */
1639 #  define signbit(x) \
1640    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
1641     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
1642     __builtin_signbitf (x))
1643 # endif
1644 # if @REPLACE_SIGNBIT@
1645 #  undef signbit
1646 _GL_EXTERN_C int gl_signbitf (float arg);
1647 _GL_EXTERN_C int gl_signbitd (double arg);
1648 _GL_EXTERN_C int gl_signbitl (long double arg);
1649 #  if __GNUC__ >= 2 && !defined __STRICT_ANSI__
1650 #   define _GL_NUM_UINT_WORDS(type) \
1651       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
1652 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
1653 #    define gl_signbitf_OPTIMIZED_MACRO
1654 #    define gl_signbitf(arg) \
1655        ({ union { float _value;                                         \
1656                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
1657                 } _m;                                                   \
1658           _m._value = (arg);                                            \
1659           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
1660         })
1661 #   endif
1662 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
1663 #    define gl_signbitd_OPTIMIZED_MACRO
1664 #    define gl_signbitd(arg) \
1665        ({ union { double _value;                                        \
1666                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
1667                 } _m;                                                   \
1668           _m._value = (arg);                                            \
1669           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
1670         })
1671 #   endif
1672 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
1673 #    define gl_signbitl_OPTIMIZED_MACRO
1674 #    define gl_signbitl(arg) \
1675        ({ union { long double _value;                                   \
1676                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
1677                 } _m;                                                   \
1678           _m._value = (arg);                                            \
1679           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
1680         })
1681 #   endif
1682 #  endif
1683 #  define signbit(x) \
1684    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
1685     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
1686     gl_signbitf (x))
1687 # endif
1688 # ifdef __cplusplus
1689 #  ifdef signbit
1690 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
1691 #   undef signbit
1692 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
1693 #  endif
1694 # endif
1695 #elif defined GNULIB_POSIXCHECK
1696 # if defined signbit
1697 _GL_WARN_REAL_FLOATING_DECL (signbit);
1698 #  undef signbit
1699 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
1700 # endif
1701 #endif
1702
1703
1704 #endif /* _@GUARD_PREFIX@_MATH_H */
1705 #endif /* _@GUARD_PREFIX@_MATH_H */