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