cbrtf: Work around bug in IRIX 6.5 system function.
[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_CBRTF@
292 # if @REPLACE_CBRTF@
293 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
294 #   undef cbrtf
295 #   define cbrtf rpl_cbrtf
296 #  endif
297 _GL_FUNCDECL_RPL (cbrtf, float, (float x));
298 _GL_CXXALIAS_RPL (cbrtf, float, (float x));
299 # else
300 #  if !@HAVE_DECL_CBRTF@
301 _GL_FUNCDECL_SYS (cbrtf, float, (float x));
302 #  endif
303 _GL_CXXALIAS_SYS (cbrtf, float, (float x));
304 # endif
305 _GL_CXXALIASWARN (cbrtf);
306 #elif defined GNULIB_POSIXCHECK
307 # undef cbrtf
308 # if HAVE_RAW_DECL_CBRTF
309 _GL_WARN_ON_USE (cbrtf, "cbrtf is unportable - "
310                  "use gnulib module cbrtf for portability");
311 # endif
312 #endif
313
314 #if @GNULIB_CBRT@
315 # if !@HAVE_CBRT@
316 _GL_FUNCDECL_SYS (cbrt, double, (double x));
317 # endif
318 _GL_CXXALIAS_SYS (cbrt, double, (double x));
319 _GL_CXXALIASWARN (cbrt);
320 #elif defined GNULIB_POSIXCHECK
321 # undef cbrt
322 # if HAVE_RAW_DECL_CBRT
323 _GL_WARN_ON_USE (cbrt, "cbrt is unportable - "
324                  "use gnulib module cbrt for portability");
325 # endif
326 #endif
327
328 #if @GNULIB_CBRTL@
329 # if !@HAVE_DECL_CBRTL@
330 _GL_FUNCDECL_SYS (cbrtl, long double, (long double x));
331 # endif
332 _GL_CXXALIAS_SYS (cbrtl, long double, (long double x));
333 _GL_CXXALIASWARN (cbrtl);
334 #elif defined GNULIB_POSIXCHECK
335 # undef cbrtl
336 # if HAVE_RAW_DECL_CBRTL
337 _GL_WARN_ON_USE (cbrtl, "cbrtl is unportable - "
338                  "use gnulib module cbrtl for portability");
339 # endif
340 #endif
341
342
343 #if @GNULIB_CEILF@
344 # if @REPLACE_CEILF@
345 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
346 #   undef ceilf
347 #   define ceilf rpl_ceilf
348 #  endif
349 _GL_FUNCDECL_RPL (ceilf, float, (float x));
350 _GL_CXXALIAS_RPL (ceilf, float, (float x));
351 # else
352 #  if !@HAVE_DECL_CEILF@
353 #   undef ceilf
354 _GL_FUNCDECL_SYS (ceilf, float, (float x));
355 #  endif
356 _GL_CXXALIAS_SYS (ceilf, float, (float x));
357 # endif
358 _GL_CXXALIASWARN (ceilf);
359 #elif defined GNULIB_POSIXCHECK
360 # undef ceilf
361 # if HAVE_RAW_DECL_CEILF
362 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
363                  "use gnulib module ceilf for portability");
364 # endif
365 #endif
366
367 #if @GNULIB_CEIL@
368 # if @REPLACE_CEIL@
369 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
370 #   define ceil rpl_ceil
371 #  endif
372 _GL_FUNCDECL_RPL (ceil, double, (double x));
373 _GL_CXXALIAS_RPL (ceil, double, (double x));
374 # else
375 _GL_CXXALIAS_SYS (ceil, double, (double x));
376 # endif
377 _GL_CXXALIASWARN (ceil);
378 #endif
379
380 #if @GNULIB_CEILL@
381 # if @REPLACE_CEILL@
382 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
383 #   undef ceill
384 #   define ceill rpl_ceill
385 #  endif
386 _GL_FUNCDECL_RPL (ceill, long double, (long double x));
387 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
388 # else
389 #  if !@HAVE_DECL_CEILL@
390 #   undef ceill
391 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
392 #  endif
393 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
394 # endif
395 _GL_CXXALIASWARN (ceill);
396 #elif defined GNULIB_POSIXCHECK
397 # undef ceill
398 # if HAVE_RAW_DECL_CEILL
399 _GL_WARN_ON_USE (ceill, "ceill is unportable - "
400                  "use gnulib module ceill for portability");
401 # endif
402 #endif
403
404
405 #if @GNULIB_COPYSIGNF@
406 # if !@HAVE_COPYSIGNF@
407 _GL_FUNCDECL_SYS (copysignf, float, (float x, float y));
408 # endif
409 _GL_CXXALIAS_SYS (copysignf, float, (float x, float y));
410 _GL_CXXALIASWARN (copysignf);
411 #elif defined GNULIB_POSIXCHECK
412 # undef copysignf
413 # if HAVE_RAW_DECL_COPYSIGNF
414 _GL_WARN_ON_USE (copysignf, "copysignf is unportable - "
415                  "use gnulib module copysignf for portability");
416 # endif
417 #endif
418
419 #if @GNULIB_COPYSIGN@
420 # if !@HAVE_COPYSIGN@
421 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
422 # endif
423 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
424 _GL_CXXALIASWARN (copysign);
425 #elif defined GNULIB_POSIXCHECK
426 # undef copysign
427 # if HAVE_RAW_DECL_COPYSIGN
428 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
429                  "use gnulib module copysign for portability");
430 # endif
431 #endif
432
433 #if @GNULIB_COPYSIGNL@
434 # if !@HAVE_COPYSIGNL@
435 _GL_FUNCDECL_SYS (copysignl, long double, (long double x, long double y));
436 # endif
437 _GL_CXXALIAS_SYS (copysignl, long double, (long double x, long double y));
438 _GL_CXXALIASWARN (copysignl);
439 #elif defined GNULIB_POSIXCHECK
440 # undef copysignl
441 # if HAVE_RAW_DECL_COPYSIGNL
442 _GL_WARN_ON_USE (copysign, "copysignl is unportable - "
443                  "use gnulib module copysignl for portability");
444 # endif
445 #endif
446
447
448 #if @GNULIB_COSF@
449 # if !@HAVE_COSF@
450 #  undef cosf
451 _GL_FUNCDECL_SYS (cosf, float, (float x));
452 # endif
453 _GL_CXXALIAS_SYS (cosf, float, (float x));
454 _GL_CXXALIASWARN (cosf);
455 #elif defined GNULIB_POSIXCHECK
456 # undef cosf
457 # if HAVE_RAW_DECL_COSF
458 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
459                  "use gnulib module cosf for portability");
460 # endif
461 #endif
462
463 #if @GNULIB_COSL@
464 # if !@HAVE_COSL@ || !@HAVE_DECL_COSL@
465 #  undef cosl
466 _GL_FUNCDECL_SYS (cosl, long double, (long double x));
467 # endif
468 _GL_CXXALIAS_SYS (cosl, long double, (long double x));
469 _GL_CXXALIASWARN (cosl);
470 #elif defined GNULIB_POSIXCHECK
471 # undef cosl
472 # if HAVE_RAW_DECL_COSL
473 _GL_WARN_ON_USE (cosl, "cosl is unportable - "
474                  "use gnulib module mathl for portability");
475 # endif
476 #endif
477
478
479 #if @GNULIB_COSHF@
480 # if !@HAVE_COSHF@
481 #  undef coshf
482 _GL_FUNCDECL_SYS (coshf, float, (float x));
483 # endif
484 _GL_CXXALIAS_SYS (coshf, float, (float x));
485 _GL_CXXALIASWARN (coshf);
486 #elif defined GNULIB_POSIXCHECK
487 # undef coshf
488 # if HAVE_RAW_DECL_COSHF
489 _GL_WARN_ON_USE (coshf, "coshf is unportable - "
490                  "use gnulib module coshf for portability");
491 # endif
492 #endif
493
494
495 #if @GNULIB_EXPF@
496 # if !@HAVE_EXPF@
497 #  undef expf
498 _GL_FUNCDECL_SYS (expf, float, (float x));
499 # endif
500 _GL_CXXALIAS_SYS (expf, float, (float x));
501 _GL_CXXALIASWARN (expf);
502 #elif defined GNULIB_POSIXCHECK
503 # undef expf
504 # if HAVE_RAW_DECL_EXPF
505 _GL_WARN_ON_USE (expf, "expf is unportable - "
506                  "use gnulib module expf for portability");
507 # endif
508 #endif
509
510 #if @GNULIB_EXPL@
511 # if !@HAVE_EXPL@ || !@HAVE_DECL_EXPL@
512 #  undef expl
513 _GL_FUNCDECL_SYS (expl, long double, (long double x));
514 # endif
515 _GL_CXXALIAS_SYS (expl, long double, (long double x));
516 _GL_CXXALIASWARN (expl);
517 #elif defined GNULIB_POSIXCHECK
518 # undef expl
519 # if HAVE_RAW_DECL_EXPL
520 _GL_WARN_ON_USE (expl, "expl is unportable - "
521                  "use gnulib module mathl for portability");
522 # endif
523 #endif
524
525
526 #if @GNULIB_FABSF@
527 # if !@HAVE_FABSF@
528 #  undef fabsf
529 _GL_FUNCDECL_SYS (fabsf, float, (float x));
530 # endif
531 _GL_CXXALIAS_SYS (fabsf, float, (float x));
532 _GL_CXXALIASWARN (fabsf);
533 #elif defined GNULIB_POSIXCHECK
534 # undef fabsf
535 # if HAVE_RAW_DECL_FABSF
536 _GL_WARN_ON_USE (fabsf, "fabsf is unportable - "
537                  "use gnulib module fabsf for portability");
538 # endif
539 #endif
540
541 #if @GNULIB_FABSL@
542 # if @REPLACE_FABSL@
543 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
544 #   undef fabsl
545 #   define fabsl rpl_fabsl
546 #  endif
547 _GL_FUNCDECL_RPL (fabsl, long double, (long double x));
548 _GL_CXXALIAS_RPL (fabsl, long double, (long double x));
549 # else
550 #  if !@HAVE_FABSL@
551 #   undef fabsl
552 _GL_FUNCDECL_SYS (fabsl, long double, (long double x));
553 #  endif
554 _GL_CXXALIAS_SYS (fabsl, long double, (long double x));
555 # endif
556 _GL_CXXALIASWARN (fabsl);
557 #elif defined GNULIB_POSIXCHECK
558 # undef fabsl
559 # if HAVE_RAW_DECL_FABSL
560 _GL_WARN_ON_USE (fabsl, "fabsl is unportable - "
561                  "use gnulib module fabsl for portability");
562 # endif
563 #endif
564
565
566 #if @GNULIB_FLOORF@
567 # if @REPLACE_FLOORF@
568 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
569 #   undef floorf
570 #   define floorf rpl_floorf
571 #  endif
572 _GL_FUNCDECL_RPL (floorf, float, (float x));
573 _GL_CXXALIAS_RPL (floorf, float, (float x));
574 # else
575 #  if !@HAVE_DECL_FLOORF@
576 #   undef floorf
577 _GL_FUNCDECL_SYS (floorf, float, (float x));
578 #  endif
579 _GL_CXXALIAS_SYS (floorf, float, (float x));
580 # endif
581 _GL_CXXALIASWARN (floorf);
582 #elif defined GNULIB_POSIXCHECK
583 # undef floorf
584 # if HAVE_RAW_DECL_FLOORF
585 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
586                  "use gnulib module floorf for portability");
587 # endif
588 #endif
589
590 #if @GNULIB_FLOOR@
591 # if @REPLACE_FLOOR@
592 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
593 #   define floor rpl_floor
594 #  endif
595 _GL_FUNCDECL_RPL (floor, double, (double x));
596 _GL_CXXALIAS_RPL (floor, double, (double x));
597 # else
598 _GL_CXXALIAS_SYS (floor, double, (double x));
599 # endif
600 _GL_CXXALIASWARN (floor);
601 #endif
602
603 #if @GNULIB_FLOORL@
604 # if @REPLACE_FLOORL@
605 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
606 #   undef floorl
607 #   define floorl rpl_floorl
608 #  endif
609 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
610 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
611 # else
612 #  if !@HAVE_DECL_FLOORL@
613 #   undef floorl
614 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
615 #  endif
616 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
617 # endif
618 _GL_CXXALIASWARN (floorl);
619 #elif defined GNULIB_POSIXCHECK
620 # undef floorl
621 # if HAVE_RAW_DECL_FLOORL
622 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
623                  "use gnulib module floorl for portability");
624 # endif
625 #endif
626
627
628 #if @GNULIB_FMAF@
629 # if @REPLACE_FMAF@
630 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
631 #   undef fmaf
632 #   define fmaf rpl_fmaf
633 #  endif
634 _GL_FUNCDECL_RPL (fmaf, float, (float x, float y, float z));
635 _GL_CXXALIAS_RPL (fmaf, float, (float x, float y, float z));
636 # else
637 #  if !@HAVE_FMAF@
638 _GL_FUNCDECL_SYS (fmaf, float, (float x, float y, float z));
639 #  endif
640 _GL_CXXALIAS_SYS (fmaf, float, (float x, float y, float z));
641 # endif
642 _GL_CXXALIASWARN (fmaf);
643 #elif defined GNULIB_POSIXCHECK
644 # undef fmaf
645 # if HAVE_RAW_DECL_FMAF
646 _GL_WARN_ON_USE (fmaf, "fmaf is unportable - "
647                  "use gnulib module fmaf for portability");
648 # endif
649 #endif
650
651 #if @GNULIB_FMA@
652 # if @REPLACE_FMA@
653 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
654 #   undef fma
655 #   define fma rpl_fma
656 #  endif
657 _GL_FUNCDECL_RPL (fma, double, (double x, double y, double z));
658 _GL_CXXALIAS_RPL (fma, double, (double x, double y, double z));
659 # else
660 #  if !@HAVE_FMA@
661 _GL_FUNCDECL_SYS (fma, double, (double x, double y, double z));
662 #  endif
663 _GL_CXXALIAS_SYS (fma, double, (double x, double y, double z));
664 # endif
665 _GL_CXXALIASWARN (fma);
666 #elif defined GNULIB_POSIXCHECK
667 # undef fma
668 # if HAVE_RAW_DECL_FMA
669 _GL_WARN_ON_USE (fma, "fma is unportable - "
670                  "use gnulib module fma for portability");
671 # endif
672 #endif
673
674 #if @GNULIB_FMAL@
675 # if @REPLACE_FMAL@
676 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
677 #   undef fmal
678 #   define fmal rpl_fmal
679 #  endif
680 _GL_FUNCDECL_RPL (fmal, long double,
681                   (long double x, long double y, long double z));
682 _GL_CXXALIAS_RPL (fmal, long double,
683                   (long double x, long double y, long double z));
684 # else
685 #  if !@HAVE_FMAL@
686 _GL_FUNCDECL_SYS (fmal, long double,
687                   (long double x, long double y, long double z));
688 #  endif
689 _GL_CXXALIAS_SYS (fmal, long double,
690                   (long double x, long double y, long double z));
691 # endif
692 _GL_CXXALIASWARN (fmal);
693 #elif defined GNULIB_POSIXCHECK
694 # undef fmal
695 # if HAVE_RAW_DECL_FMAL
696 _GL_WARN_ON_USE (fmal, "fmal is unportable - "
697                  "use gnulib module fmal for portability");
698 # endif
699 #endif
700
701
702 #if @GNULIB_FMODF@
703 # if @REPLACE_FMODF@
704 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
705 #   undef fmodf
706 #   define fmodf rpl_fmodf
707 #  endif
708 _GL_FUNCDECL_RPL (fmodf, float, (float x, float y));
709 _GL_CXXALIAS_RPL (fmodf, float, (float x, float y));
710 # else
711 #  if !@HAVE_FMODF@
712 #   undef fmodf
713 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
714 #  endif
715 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
716 # endif
717 _GL_CXXALIASWARN (fmodf);
718 #elif defined GNULIB_POSIXCHECK
719 # undef fmodf
720 # if HAVE_RAW_DECL_FMODF
721 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
722                  "use gnulib module fmodf for portability");
723 # endif
724 #endif
725
726 #if @GNULIB_FMOD@
727 # if @REPLACE_FMOD@
728 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
729 #   undef fmod
730 #   define fmod rpl_fmod
731 #  endif
732 _GL_FUNCDECL_RPL (fmod, double, (double x, double y));
733 _GL_CXXALIAS_RPL (fmod, double, (double x, double y));
734 # else
735 _GL_CXXALIAS_SYS (fmod, double, (double x, double y));
736 # endif
737 _GL_CXXALIASWARN (fmod);
738 #elif defined GNULIB_POSIXCHECK
739 # undef fmod
740 # if HAVE_RAW_DECL_FMOD
741 _GL_WARN_ON_USE (fmod, "fmod has portability problems - "
742                  "use gnulib module fmod for portability");
743 # endif
744 #endif
745
746 #if @GNULIB_FMODL@
747 # if @REPLACE_FMODL@
748 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
749 #   undef fmodl
750 #   define fmodl rpl_fmodl
751 #  endif
752 _GL_FUNCDECL_RPL (fmodl, long double, (long double x, long double y));
753 _GL_CXXALIAS_RPL (fmodl, long double, (long double x, long double y));
754 # else
755 #  if !@HAVE_FMODL@
756 #   undef fmodl
757 _GL_FUNCDECL_SYS (fmodl, long double, (long double x, long double y));
758 #  endif
759 _GL_CXXALIAS_SYS (fmodl, long double, (long double x, long double y));
760 # endif
761 _GL_CXXALIASWARN (fmodl);
762 #elif defined GNULIB_POSIXCHECK
763 # undef fmodl
764 # if HAVE_RAW_DECL_FMODL
765 _GL_WARN_ON_USE (fmodl, "fmodl is unportable - "
766                  "use gnulib module fmodl for portability");
767 # endif
768 #endif
769
770
771 /* Write x as
772      x = mantissa * 2^exp
773    where
774      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
775      If x is zero: mantissa = x, exp = 0.
776      If x is infinite or NaN: mantissa = x, exp unspecified.
777    Store exp in *EXPPTR and return mantissa.  */
778 #if @GNULIB_FREXPF@
779 # if @REPLACE_FREXPF@
780 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
781 #   undef frexpf
782 #   define frexpf rpl_frexpf
783 #  endif
784 _GL_FUNCDECL_RPL (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
785 _GL_CXXALIAS_RPL (frexpf, float, (float x, int *expptr));
786 # else
787 #  if !@HAVE_FREXPF@
788 #   undef frexpf
789 _GL_FUNCDECL_SYS (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
790 #  endif
791 _GL_CXXALIAS_SYS (frexpf, float, (float x, int *expptr));
792 # endif
793 _GL_CXXALIASWARN (frexpf);
794 #elif defined GNULIB_POSIXCHECK
795 # undef frexpf
796 # if HAVE_RAW_DECL_FREXPF
797 _GL_WARN_ON_USE (frexpf, "frexpf is unportable - "
798                  "use gnulib module frexpf for portability");
799 # endif
800 #endif
801
802 /* Write x as
803      x = mantissa * 2^exp
804    where
805      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
806      If x is zero: mantissa = x, exp = 0.
807      If x is infinite or NaN: mantissa = x, exp unspecified.
808    Store exp in *EXPPTR and return mantissa.  */
809 #if @GNULIB_FREXP@
810 # if @REPLACE_FREXP@
811 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
812 #   define frexp rpl_frexp
813 #  endif
814 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
815 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
816 # else
817 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
818 # endif
819 _GL_CXXALIASWARN (frexp);
820 #elif defined GNULIB_POSIXCHECK
821 # undef frexp
822 /* Assume frexp is always declared.  */
823 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
824                  "use gnulib module frexp for portability");
825 #endif
826
827 /* Write x as
828      x = mantissa * 2^exp
829    where
830      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
831      If x is zero: mantissa = x, exp = 0.
832      If x is infinite or NaN: mantissa = x, exp unspecified.
833    Store exp in *EXPPTR and return mantissa.  */
834 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
835 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
836 #  undef frexpl
837 #  define frexpl rpl_frexpl
838 # endif
839 _GL_FUNCDECL_RPL (frexpl, long double,
840                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
841 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
842 #else
843 # if !@HAVE_DECL_FREXPL@
844 _GL_FUNCDECL_SYS (frexpl, long double,
845                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
846 # endif
847 # if @GNULIB_FREXPL@
848 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
849 # endif
850 #endif
851 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
852 _GL_CXXALIASWARN (frexpl);
853 #endif
854 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
855 # undef frexpl
856 # if HAVE_RAW_DECL_FREXPL
857 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
858                  "use gnulib module frexpl for portability");
859 # endif
860 #endif
861
862
863 /* Return sqrt(x^2+y^2).  */
864 #if @GNULIB_HYPOTF@
865 # if @REPLACE_HYPOTF@
866 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
867 #   undef hypotf
868 #   define hypotf rpl_hypotf
869 #  endif
870 _GL_FUNCDECL_RPL (hypotf, float, (float x, float y));
871 _GL_CXXALIAS_RPL (hypotf, float, (float x, float y));
872 # else
873 #  if !@HAVE_HYPOTF@
874 _GL_FUNCDECL_SYS (hypotf, float, (float x, float y));
875 #  endif
876 _GL_CXXALIAS_SYS (hypotf, float, (float x, float y));
877 # endif
878 _GL_CXXALIASWARN (hypotf);
879 #elif defined GNULIB_POSIXCHECK
880 # undef hypotf
881 # if HAVE_RAW_DECL_HYPOTF
882 _GL_WARN_ON_USE (hypotf, "hypotf is unportable - "
883                  "use gnulib module hypotf for portability");
884 # endif
885 #endif
886
887 /* Return sqrt(x^2+y^2).  */
888 #if @GNULIB_HYPOT@
889 # if @REPLACE_HYPOT@
890 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
891 #   undef hypot
892 #   define hypot rpl_hypot
893 #  endif
894 _GL_FUNCDECL_RPL (hypot, double, (double x, double y));
895 _GL_CXXALIAS_RPL (hypot, double, (double x, double y));
896 # else
897 _GL_CXXALIAS_SYS (hypot, double, (double x, double y));
898 # endif
899 _GL_CXXALIASWARN (hypot);
900 #elif defined GNULIB_POSIXCHECK
901 # undef hypot
902 # if HAVE_RAW_DECL_HYPOT
903 _GL_WARN_ON_USE (hypotf, "hypot has portability problems - "
904                  "use gnulib module hypot for portability");
905 # endif
906 #endif
907
908 /* Return sqrt(x^2+y^2).  */
909 #if @GNULIB_HYPOTL@
910 # if @REPLACE_HYPOTL@
911 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
912 #   undef hypotl
913 #   define hypotl rpl_hypotl
914 #  endif
915 _GL_FUNCDECL_RPL (hypotl, long double, (long double x, long double y));
916 _GL_CXXALIAS_RPL (hypotl, long double, (long double x, long double y));
917 # else
918 #  if !@HAVE_HYPOTL@
919 _GL_FUNCDECL_SYS (hypotl, long double, (long double x, long double y));
920 #  endif
921 _GL_CXXALIAS_SYS (hypotl, long double, (long double x, long double y));
922 # endif
923 _GL_CXXALIASWARN (hypotl);
924 #elif defined GNULIB_POSIXCHECK
925 # undef hypotl
926 # if HAVE_RAW_DECL_HYPOTL
927 _GL_WARN_ON_USE (hypotl, "hypotl is unportable - "
928                  "use gnulib module hypotl for portability");
929 # endif
930 #endif
931
932
933 /* Return x * 2^exp.  */
934 #if @GNULIB_LDEXPF@
935 # if !@HAVE_LDEXPF@
936 #  undef ldexpf
937 _GL_FUNCDECL_SYS (ldexpf, float, (float x, int exp));
938 # endif
939 _GL_CXXALIAS_SYS (ldexpf, float, (float x, int exp));
940 _GL_CXXALIASWARN (ldexpf);
941 #elif defined GNULIB_POSIXCHECK
942 # undef ldexpf
943 # if HAVE_RAW_DECL_LDEXPF
944 _GL_WARN_ON_USE (ldexpf, "ldexpf is unportable - "
945                  "use gnulib module ldexpf for portability");
946 # endif
947 #endif
948
949 /* Return x * 2^exp.  */
950 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
951 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
952 #  undef ldexpl
953 #  define ldexpl rpl_ldexpl
954 # endif
955 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
956 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
957 #else
958 # if !@HAVE_DECL_LDEXPL@
959 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
960 # endif
961 # if @GNULIB_LDEXPL@
962 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
963 # endif
964 #endif
965 #if @GNULIB_LDEXPL@
966 _GL_CXXALIASWARN (ldexpl);
967 #endif
968 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
969 # undef ldexpl
970 # if HAVE_RAW_DECL_LDEXPL
971 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
972                  "use gnulib module ldexpl for portability");
973 # endif
974 #endif
975
976
977 #if @GNULIB_LOGB@
978 # if !@HAVE_DECL_LOGB@
979 _GL_EXTERN_C double logb (double x);
980 # endif
981 #elif defined GNULIB_POSIXCHECK
982 # undef logb
983 # if HAVE_RAW_DECL_LOGB
984 _GL_WARN_ON_USE (logb, "logb is unportable - "
985                  "use gnulib module logb for portability");
986 # endif
987 #endif
988
989
990 #if @GNULIB_LOGF@
991 # if !@HAVE_LOGF@
992 #  undef logf
993 _GL_FUNCDECL_SYS (logf, float, (float x));
994 # endif
995 _GL_CXXALIAS_SYS (logf, float, (float x));
996 _GL_CXXALIASWARN (logf);
997 #elif defined GNULIB_POSIXCHECK
998 # undef logf
999 # if HAVE_RAW_DECL_LOGF
1000 _GL_WARN_ON_USE (logf, "logf is unportable - "
1001                  "use gnulib module logf for portability");
1002 # endif
1003 #endif
1004
1005 #if @GNULIB_LOGL@
1006 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
1007 #  undef logl
1008 _GL_FUNCDECL_SYS (logl, long double, (long double x));
1009 # endif
1010 _GL_CXXALIAS_SYS (logl, long double, (long double x));
1011 _GL_CXXALIASWARN (logl);
1012 #elif defined GNULIB_POSIXCHECK
1013 # undef logl
1014 # if HAVE_RAW_DECL_LOGL
1015 _GL_WARN_ON_USE (logl, "logl is unportable - "
1016                  "use gnulib module mathl for portability");
1017 # endif
1018 #endif
1019
1020
1021 #if @GNULIB_LOG10F@
1022 # if !@HAVE_LOG10F@
1023 #  undef log10f
1024 _GL_FUNCDECL_SYS (log10f, float, (float x));
1025 # endif
1026 _GL_CXXALIAS_SYS (log10f, float, (float x));
1027 _GL_CXXALIASWARN (log10f);
1028 #elif defined GNULIB_POSIXCHECK
1029 # undef log10f
1030 # if HAVE_RAW_DECL_LOG10F
1031 _GL_WARN_ON_USE (log10f, "log10f is unportable - "
1032                  "use gnulib module log10f for portability");
1033 # endif
1034 #endif
1035
1036 #if @GNULIB_LOG10L@
1037 # if !@HAVE_LOG10L@ || !@HAVE_DECL_LOG10L@
1038 #  undef log10l
1039 _GL_FUNCDECL_SYS (log10l, long double, (long double x));
1040 # endif
1041 _GL_CXXALIAS_SYS (log10l, long double, (long double x));
1042 _GL_CXXALIASWARN (log10l);
1043 #elif defined GNULIB_POSIXCHECK
1044 # undef log10l
1045 # if HAVE_RAW_DECL_LOG10L
1046 _GL_WARN_ON_USE (log10l, "log10l is unportable - "
1047                  "use gnulib module log10l for portability");
1048 # endif
1049 #endif
1050
1051
1052 #if @GNULIB_MODFF@
1053 # if @REPLACE_MODFF@
1054 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1055 #   undef modff
1056 #   define modff rpl_modff
1057 #  endif
1058 _GL_FUNCDECL_RPL (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
1059 _GL_CXXALIAS_RPL (modff, float, (float x, float *iptr));
1060 # else
1061 #  if !@HAVE_MODFF@
1062 #   undef modff
1063 _GL_FUNCDECL_SYS (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
1064 #  endif
1065 _GL_CXXALIAS_SYS (modff, float, (float x, float *iptr));
1066 # endif
1067 _GL_CXXALIASWARN (modff);
1068 #elif defined GNULIB_POSIXCHECK
1069 # undef modff
1070 # if HAVE_RAW_DECL_MODFF
1071 _GL_WARN_ON_USE (modff, "modff is unportable - "
1072                  "use gnulib module modff for portability");
1073 # endif
1074 #endif
1075
1076 #if @GNULIB_MODF@
1077 # if @REPLACE_MODF@
1078 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1079 #   undef modf
1080 #   define modf rpl_modf
1081 #  endif
1082 _GL_FUNCDECL_RPL (modf, double, (double x, double *iptr) _GL_ARG_NONNULL ((2)));
1083 _GL_CXXALIAS_RPL (modf, double, (double x, double *iptr));
1084 # else
1085 _GL_CXXALIAS_SYS (modf, double, (double x, double *iptr));
1086 # endif
1087 _GL_CXXALIASWARN (modf);
1088 #elif defined GNULIB_POSIXCHECK
1089 # undef modf
1090 # if HAVE_RAW_DECL_MODF
1091 _GL_WARN_ON_USE (modf, "modf has portability problems - "
1092                  "use gnulib module modf for portability");
1093 # endif
1094 #endif
1095
1096 #if @GNULIB_MODFL@
1097 # if @REPLACE_MODFL@
1098 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1099 #   undef modfl
1100 #   define modfl rpl_modfl
1101 #  endif
1102 _GL_FUNCDECL_RPL (modfl, long double, (long double x, long double *iptr)
1103                                       _GL_ARG_NONNULL ((2)));
1104 _GL_CXXALIAS_RPL (modfl, long double, (long double x, long double *iptr));
1105 # else
1106 #  if !@HAVE_MODFL@
1107 #   undef modfl
1108 _GL_FUNCDECL_SYS (modfl, long double, (long double x, long double *iptr)
1109                                       _GL_ARG_NONNULL ((2)));
1110 #  endif
1111 _GL_CXXALIAS_SYS (modfl, long double, (long double x, long double *iptr));
1112 # endif
1113 _GL_CXXALIASWARN (modfl);
1114 #elif defined GNULIB_POSIXCHECK
1115 # undef modfl
1116 # if HAVE_RAW_DECL_MODFL
1117 _GL_WARN_ON_USE (modfl, "modfl is unportable - "
1118                  "use gnulib module modfl for portability");
1119 # endif
1120 #endif
1121
1122
1123 #if @GNULIB_POWF@
1124 # if !@HAVE_POWF@
1125 #  undef powf
1126 _GL_FUNCDECL_SYS (powf, float, (float x, float y));
1127 # endif
1128 _GL_CXXALIAS_SYS (powf, float, (float x, float y));
1129 _GL_CXXALIASWARN (powf);
1130 #elif defined GNULIB_POSIXCHECK
1131 # undef powf
1132 # if HAVE_RAW_DECL_POWF
1133 _GL_WARN_ON_USE (powf, "powf is unportable - "
1134                  "use gnulib module powf for portability");
1135 # endif
1136 #endif
1137
1138
1139 #if @GNULIB_REMAINDERF@
1140 # if @REPLACE_REMAINDERF@
1141 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1142 #   undef remainderf
1143 #   define remainderf rpl_remainderf
1144 #  endif
1145 _GL_FUNCDECL_RPL (remainderf, float, (float x, float y));
1146 _GL_CXXALIAS_RPL (remainderf, float, (float x, float y));
1147 # else
1148 #  if !@HAVE_REMAINDERF@
1149 _GL_FUNCDECL_SYS (remainderf, float, (float x, float y));
1150 #  endif
1151 _GL_CXXALIAS_SYS (remainderf, float, (float x, float y));
1152 # endif
1153 _GL_CXXALIASWARN (remainderf);
1154 #elif defined GNULIB_POSIXCHECK
1155 # undef remainderf
1156 # if HAVE_RAW_DECL_REMAINDERF
1157 _GL_WARN_ON_USE (remainderf, "remainderf is unportable - "
1158                  "use gnulib module remainderf for portability");
1159 # endif
1160 #endif
1161
1162 #if @GNULIB_REMAINDER@
1163 # if @REPLACE_REMAINDER@
1164 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1165 #   undef remainder
1166 #   define remainder rpl_remainder
1167 #  endif
1168 _GL_FUNCDECL_RPL (remainder, double, (double x, double y));
1169 _GL_CXXALIAS_RPL (remainder, double, (double x, double y));
1170 # else
1171 #  if !@HAVE_REMAINDER@ || !@HAVE_DECL_REMAINDER@
1172 _GL_FUNCDECL_SYS (remainder, double, (double x, double y));
1173 #  endif
1174 _GL_CXXALIAS_SYS (remainder, double, (double x, double y));
1175 # endif
1176 _GL_CXXALIASWARN (remainder);
1177 #elif defined GNULIB_POSIXCHECK
1178 # undef remainder
1179 # if HAVE_RAW_DECL_REMAINDER
1180 _GL_WARN_ON_USE (remainder, "remainder is unportable - "
1181                  "use gnulib module remainder for portability");
1182 # endif
1183 #endif
1184
1185 #if @GNULIB_REMAINDERL@
1186 # if @REPLACE_REMAINDERL@
1187 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1188 #   undef remainderl
1189 #   define remainderl rpl_remainderl
1190 #  endif
1191 _GL_FUNCDECL_RPL (remainderl, long double, (long double x, long double y));
1192 _GL_CXXALIAS_RPL (remainderl, long double, (long double x, long double y));
1193 # else
1194 #  if !@HAVE_REMAINDERL@
1195 _GL_FUNCDECL_SYS (remainderl, long double, (long double x, long double y));
1196 #  endif
1197 _GL_CXXALIAS_SYS (remainderl, long double, (long double x, long double y));
1198 # endif
1199 _GL_CXXALIASWARN (remainderl);
1200 #elif defined GNULIB_POSIXCHECK
1201 # undef remainderl
1202 # if HAVE_RAW_DECL_REMAINDERL
1203 _GL_WARN_ON_USE (remainderl, "remainderl is unportable - "
1204                  "use gnulib module remainderl for portability");
1205 # endif
1206 #endif
1207
1208
1209 #if @GNULIB_RINTF@
1210 # if !@HAVE_RINTF@
1211 _GL_FUNCDECL_SYS (rintf, float, (float x));
1212 # endif
1213 _GL_CXXALIAS_SYS (rintf, float, (float x));
1214 _GL_CXXALIASWARN (rintf);
1215 #elif defined GNULIB_POSIXCHECK
1216 # undef rintf
1217 # if HAVE_RAW_DECL_RINTF
1218 _GL_WARN_ON_USE (rintf, "rintf is unportable - "
1219                  "use gnulib module rintf for portability");
1220 # endif
1221 #endif
1222
1223 #if @GNULIB_RINT@
1224 # if !@HAVE_RINT@
1225 _GL_FUNCDECL_SYS (rint, double, (double x));
1226 # endif
1227 _GL_CXXALIAS_SYS (rint, double, (double x));
1228 _GL_CXXALIASWARN (rint);
1229 #elif defined GNULIB_POSIXCHECK
1230 # undef rint
1231 # if HAVE_RAW_DECL_RINT
1232 _GL_WARN_ON_USE (rint, "rint is unportable - "
1233                  "use gnulib module rint for portability");
1234 # endif
1235 #endif
1236
1237 #if @GNULIB_RINTL@
1238 # if !@HAVE_RINTL@
1239 _GL_FUNCDECL_SYS (rintl, long double, (long double x));
1240 # endif
1241 _GL_CXXALIAS_SYS (rintl, long double, (long double x));
1242 _GL_CXXALIASWARN (rintl);
1243 #elif defined GNULIB_POSIXCHECK
1244 # undef rintl
1245 # if HAVE_RAW_DECL_RINTL
1246 _GL_WARN_ON_USE (rintl, "rintl is unportable - "
1247                  "use gnulib module rintl for portability");
1248 # endif
1249 #endif
1250
1251
1252 #if @GNULIB_ROUNDF@
1253 # if @REPLACE_ROUNDF@
1254 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1255 #   undef roundf
1256 #   define roundf rpl_roundf
1257 #  endif
1258 _GL_FUNCDECL_RPL (roundf, float, (float x));
1259 _GL_CXXALIAS_RPL (roundf, float, (float x));
1260 # else
1261 #  if !@HAVE_DECL_ROUNDF@
1262 _GL_FUNCDECL_SYS (roundf, float, (float x));
1263 #  endif
1264 _GL_CXXALIAS_SYS (roundf, float, (float x));
1265 # endif
1266 _GL_CXXALIASWARN (roundf);
1267 #elif defined GNULIB_POSIXCHECK
1268 # undef roundf
1269 # if HAVE_RAW_DECL_ROUNDF
1270 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
1271                  "use gnulib module roundf for portability");
1272 # endif
1273 #endif
1274
1275 #if @GNULIB_ROUND@
1276 # if @REPLACE_ROUND@
1277 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1278 #   undef round
1279 #   define round rpl_round
1280 #  endif
1281 _GL_FUNCDECL_RPL (round, double, (double x));
1282 _GL_CXXALIAS_RPL (round, double, (double x));
1283 # else
1284 #  if !@HAVE_DECL_ROUND@
1285 _GL_FUNCDECL_SYS (round, double, (double x));
1286 #  endif
1287 _GL_CXXALIAS_SYS (round, double, (double x));
1288 # endif
1289 _GL_CXXALIASWARN (round);
1290 #elif defined GNULIB_POSIXCHECK
1291 # undef round
1292 # if HAVE_RAW_DECL_ROUND
1293 _GL_WARN_ON_USE (round, "round is unportable - "
1294                  "use gnulib module round for portability");
1295 # endif
1296 #endif
1297
1298 #if @GNULIB_ROUNDL@
1299 # if @REPLACE_ROUNDL@
1300 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1301 #   undef roundl
1302 #   define roundl rpl_roundl
1303 #  endif
1304 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
1305 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
1306 # else
1307 #  if !@HAVE_DECL_ROUNDL@
1308 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
1309 #  endif
1310 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
1311 # endif
1312 _GL_CXXALIASWARN (roundl);
1313 #elif defined GNULIB_POSIXCHECK
1314 # undef roundl
1315 # if HAVE_RAW_DECL_ROUNDL
1316 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
1317                  "use gnulib module roundl for portability");
1318 # endif
1319 #endif
1320
1321
1322 #if @GNULIB_SINF@
1323 # if !@HAVE_SINF@
1324 #  undef sinf
1325 _GL_FUNCDECL_SYS (sinf, float, (float x));
1326 # endif
1327 _GL_CXXALIAS_SYS (sinf, float, (float x));
1328 _GL_CXXALIASWARN (sinf);
1329 #elif defined GNULIB_POSIXCHECK
1330 # undef sinf
1331 # if HAVE_RAW_DECL_SINF
1332 _GL_WARN_ON_USE (sinf, "sinf is unportable - "
1333                  "use gnulib module sinf for portability");
1334 # endif
1335 #endif
1336
1337 #if @GNULIB_SINL@
1338 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
1339 #  undef sinl
1340 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
1341 # endif
1342 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
1343 _GL_CXXALIASWARN (sinl);
1344 #elif defined GNULIB_POSIXCHECK
1345 # undef sinl
1346 # if HAVE_RAW_DECL_SINL
1347 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
1348                  "use gnulib module mathl for portability");
1349 # endif
1350 #endif
1351
1352
1353 #if @GNULIB_SINHF@
1354 # if !@HAVE_SINHF@
1355 #  undef sinhf
1356 _GL_FUNCDECL_SYS (sinhf, float, (float x));
1357 # endif
1358 _GL_CXXALIAS_SYS (sinhf, float, (float x));
1359 _GL_CXXALIASWARN (sinhf);
1360 #elif defined GNULIB_POSIXCHECK
1361 # undef sinhf
1362 # if HAVE_RAW_DECL_SINHF
1363 _GL_WARN_ON_USE (sinhf, "sinhf is unportable - "
1364                  "use gnulib module sinhf for portability");
1365 # endif
1366 #endif
1367
1368
1369 #if @GNULIB_SQRTF@
1370 # if !@HAVE_SQRTF@
1371 #  undef sqrtf
1372 _GL_FUNCDECL_SYS (sqrtf, float, (float x));
1373 # endif
1374 _GL_CXXALIAS_SYS (sqrtf, float, (float x));
1375 _GL_CXXALIASWARN (sqrtf);
1376 #elif defined GNULIB_POSIXCHECK
1377 # undef sqrtf
1378 # if HAVE_RAW_DECL_SQRTF
1379 _GL_WARN_ON_USE (sqrtf, "sqrtf is unportable - "
1380                  "use gnulib module sqrtf for portability");
1381 # endif
1382 #endif
1383
1384 #if @GNULIB_SQRTL@
1385 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
1386 #  undef sqrtl
1387 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
1388 # endif
1389 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
1390 _GL_CXXALIASWARN (sqrtl);
1391 #elif defined GNULIB_POSIXCHECK
1392 # undef sqrtl
1393 # if HAVE_RAW_DECL_SQRTL
1394 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
1395                  "use gnulib module mathl for portability");
1396 # endif
1397 #endif
1398
1399
1400 #if @GNULIB_TANF@
1401 # if !@HAVE_TANF@
1402 #  undef tanf
1403 _GL_FUNCDECL_SYS (tanf, float, (float x));
1404 # endif
1405 _GL_CXXALIAS_SYS (tanf, float, (float x));
1406 _GL_CXXALIASWARN (tanf);
1407 #elif defined GNULIB_POSIXCHECK
1408 # undef tanf
1409 # if HAVE_RAW_DECL_TANF
1410 _GL_WARN_ON_USE (tanf, "tanf is unportable - "
1411                  "use gnulib module tanf for portability");
1412 # endif
1413 #endif
1414
1415 #if @GNULIB_TANL@
1416 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
1417 #  undef tanl
1418 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
1419 # endif
1420 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
1421 _GL_CXXALIASWARN (tanl);
1422 #elif defined GNULIB_POSIXCHECK
1423 # undef tanl
1424 # if HAVE_RAW_DECL_TANL
1425 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
1426                  "use gnulib module mathl for portability");
1427 # endif
1428 #endif
1429
1430
1431 #if @GNULIB_TANHF@
1432 # if !@HAVE_TANHF@
1433 #  undef tanhf
1434 _GL_FUNCDECL_SYS (tanhf, float, (float x));
1435 # endif
1436 _GL_CXXALIAS_SYS (tanhf, float, (float x));
1437 _GL_CXXALIASWARN (tanhf);
1438 #elif defined GNULIB_POSIXCHECK
1439 # undef tanhf
1440 # if HAVE_RAW_DECL_TANHF
1441 _GL_WARN_ON_USE (tanhf, "tanhf is unportable - "
1442                  "use gnulib module tanhf for portability");
1443 # endif
1444 #endif
1445
1446
1447 #if @GNULIB_TRUNCF@
1448 # if @REPLACE_TRUNCF@
1449 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1450 #   define truncf rpl_truncf
1451 #  endif
1452 _GL_FUNCDECL_RPL (truncf, float, (float x));
1453 _GL_CXXALIAS_RPL (truncf, float, (float x));
1454 # else
1455 #  if !@HAVE_DECL_TRUNCF@
1456 _GL_FUNCDECL_SYS (truncf, float, (float x));
1457 #  endif
1458 _GL_CXXALIAS_SYS (truncf, float, (float x));
1459 # endif
1460 _GL_CXXALIASWARN (truncf);
1461 #elif defined GNULIB_POSIXCHECK
1462 # undef truncf
1463 # if HAVE_RAW_DECL_TRUNCF
1464 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
1465                  "use gnulib module truncf for portability");
1466 # endif
1467 #endif
1468
1469 #if @GNULIB_TRUNC@
1470 # if @REPLACE_TRUNC@
1471 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1472 #   define trunc rpl_trunc
1473 #  endif
1474 _GL_FUNCDECL_RPL (trunc, double, (double x));
1475 _GL_CXXALIAS_RPL (trunc, double, (double x));
1476 # else
1477 #  if !@HAVE_DECL_TRUNC@
1478 _GL_FUNCDECL_SYS (trunc, double, (double x));
1479 #  endif
1480 _GL_CXXALIAS_SYS (trunc, double, (double x));
1481 # endif
1482 _GL_CXXALIASWARN (trunc);
1483 #elif defined GNULIB_POSIXCHECK
1484 # undef trunc
1485 # if HAVE_RAW_DECL_TRUNC
1486 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
1487                  "use gnulib module trunc for portability");
1488 # endif
1489 #endif
1490
1491 #if @GNULIB_TRUNCL@
1492 # if @REPLACE_TRUNCL@
1493 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1494 #   undef truncl
1495 #   define truncl rpl_truncl
1496 #  endif
1497 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
1498 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
1499 # else
1500 #  if !@HAVE_DECL_TRUNCL@
1501 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
1502 #  endif
1503 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
1504 # endif
1505 _GL_CXXALIASWARN (truncl);
1506 #elif defined GNULIB_POSIXCHECK
1507 # undef truncl
1508 # if HAVE_RAW_DECL_TRUNCL
1509 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
1510                  "use gnulib module truncl for portability");
1511 # endif
1512 #endif
1513
1514
1515 /* Definitions of function-like macros come here, after the function
1516    declarations.  */
1517
1518
1519 #if @GNULIB_ISFINITE@
1520 # if @REPLACE_ISFINITE@
1521 _GL_EXTERN_C int gl_isfinitef (float x);
1522 _GL_EXTERN_C int gl_isfinited (double x);
1523 _GL_EXTERN_C int gl_isfinitel (long double x);
1524 #  undef isfinite
1525 #  define isfinite(x) \
1526    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
1527     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
1528     gl_isfinitef (x))
1529 # endif
1530 # ifdef __cplusplus
1531 #  ifdef isfinite
1532 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isfinite)
1533 #   undef isfinite
1534 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isfinite)
1535 #  endif
1536 # endif
1537 #elif defined GNULIB_POSIXCHECK
1538 # if defined isfinite
1539 _GL_WARN_REAL_FLOATING_DECL (isfinite);
1540 #  undef isfinite
1541 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
1542 # endif
1543 #endif
1544
1545
1546 #if @GNULIB_ISINF@
1547 # if @REPLACE_ISINF@
1548 _GL_EXTERN_C int gl_isinff (float x);
1549 _GL_EXTERN_C int gl_isinfd (double x);
1550 _GL_EXTERN_C int gl_isinfl (long double x);
1551 #  undef isinf
1552 #  define isinf(x) \
1553    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
1554     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
1555     gl_isinff (x))
1556 # endif
1557 # ifdef __cplusplus
1558 #  ifdef isinf
1559 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
1560 #   undef isinf
1561 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
1562 #  endif
1563 # endif
1564 #elif defined GNULIB_POSIXCHECK
1565 # if defined isinf
1566 _GL_WARN_REAL_FLOATING_DECL (isinf);
1567 #  undef isinf
1568 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
1569 # endif
1570 #endif
1571
1572
1573 #if @GNULIB_ISNANF@
1574 /* Test for NaN for 'float' numbers.  */
1575 # if @HAVE_ISNANF@
1576 /* The original <math.h> included above provides a declaration of isnan macro
1577    or (older) isnanf function.  */
1578 #  if __GNUC__ >= 4
1579     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1580 #   undef isnanf
1581 #   define isnanf(x) __builtin_isnanf ((float)(x))
1582 #  elif defined isnan
1583 #   undef isnanf
1584 #   define isnanf(x) isnan ((float)(x))
1585 #  endif
1586 # else
1587 /* Test whether X is a NaN.  */
1588 #  undef isnanf
1589 #  define isnanf rpl_isnanf
1590 _GL_EXTERN_C int isnanf (float x);
1591 # endif
1592 #endif
1593
1594 #if @GNULIB_ISNAND@
1595 /* Test for NaN for 'double' numbers.
1596    This function is a gnulib extension, unlike isnan() which applied only
1597    to 'double' numbers earlier but now is a type-generic macro.  */
1598 # if @HAVE_ISNAND@
1599 /* The original <math.h> included above provides a declaration of isnan
1600    macro.  */
1601 #  if __GNUC__ >= 4
1602     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1603 #   undef isnand
1604 #   define isnand(x) __builtin_isnan ((double)(x))
1605 #  else
1606 #   undef isnand
1607 #   define isnand(x) isnan ((double)(x))
1608 #  endif
1609 # else
1610 /* Test whether X is a NaN.  */
1611 #  undef isnand
1612 #  define isnand rpl_isnand
1613 _GL_EXTERN_C int isnand (double x);
1614 # endif
1615 #endif
1616
1617 #if @GNULIB_ISNANL@
1618 /* Test for NaN for 'long double' numbers.  */
1619 # if @HAVE_ISNANL@
1620 /* The original <math.h> included above provides a declaration of isnan
1621    macro or (older) isnanl function.  */
1622 #  if __GNUC__ >= 4
1623     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1624 #   undef isnanl
1625 #   define isnanl(x) __builtin_isnanl ((long double)(x))
1626 #  elif defined isnan
1627 #   undef isnanl
1628 #   define isnanl(x) isnan ((long double)(x))
1629 #  endif
1630 # else
1631 /* Test whether X is a NaN.  */
1632 #  undef isnanl
1633 #  define isnanl rpl_isnanl
1634 _GL_EXTERN_C int isnanl (long double x) _GL_ATTRIBUTE_CONST;
1635 # endif
1636 #endif
1637
1638 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
1639 #if @GNULIB_ISNAN@
1640 # if @REPLACE_ISNAN@
1641 /* We can't just use the isnanf macro (e.g.) as exposed by
1642    isnanf.h (e.g.) here, because those may end up being macros
1643    that recursively expand back to isnan.  So use the gnulib
1644    replacements for them directly. */
1645 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
1646 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
1647 #  else
1648 _GL_EXTERN_C int rpl_isnanf (float x);
1649 #   define gl_isnan_f(x) rpl_isnanf (x)
1650 #  endif
1651 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
1652 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
1653 #  else
1654 _GL_EXTERN_C int rpl_isnand (double x);
1655 #   define gl_isnan_d(x) rpl_isnand (x)
1656 #  endif
1657 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
1658 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
1659 #  else
1660 _GL_EXTERN_C int rpl_isnanl (long double x) _GL_ATTRIBUTE_CONST;
1661 #   define gl_isnan_l(x) rpl_isnanl (x)
1662 #  endif
1663 #  undef isnan
1664 #  define isnan(x) \
1665    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
1666     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
1667     gl_isnan_f (x))
1668 # elif __GNUC__ >= 4
1669 #  undef isnan
1670 #  define isnan(x) \
1671    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
1672     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
1673     __builtin_isnanf ((float)(x)))
1674 # endif
1675 # ifdef __cplusplus
1676 #  ifdef isnan
1677 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isnan)
1678 #   undef isnan
1679 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan)
1680 #  endif
1681 # else
1682 /* Ensure isnan is a macro.  */
1683 #  ifndef isnan
1684 #   define isnan isnan
1685 #  endif
1686 # endif
1687 #elif defined GNULIB_POSIXCHECK
1688 # if defined isnan
1689 _GL_WARN_REAL_FLOATING_DECL (isnan);
1690 #  undef isnan
1691 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
1692 # endif
1693 #endif
1694
1695
1696 #if @GNULIB_SIGNBIT@
1697 # if @REPLACE_SIGNBIT_USING_GCC@
1698 #  undef signbit
1699    /* GCC 4.0 and newer provides three built-ins for signbit.  */
1700 #  define signbit(x) \
1701    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
1702     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
1703     __builtin_signbitf (x))
1704 # endif
1705 # if @REPLACE_SIGNBIT@
1706 #  undef signbit
1707 _GL_EXTERN_C int gl_signbitf (float arg);
1708 _GL_EXTERN_C int gl_signbitd (double arg);
1709 _GL_EXTERN_C int gl_signbitl (long double arg);
1710 #  if __GNUC__ >= 2 && !defined __STRICT_ANSI__
1711 #   define _GL_NUM_UINT_WORDS(type) \
1712       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
1713 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
1714 #    define gl_signbitf_OPTIMIZED_MACRO
1715 #    define gl_signbitf(arg) \
1716        ({ union { float _value;                                         \
1717                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
1718                 } _m;                                                   \
1719           _m._value = (arg);                                            \
1720           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
1721         })
1722 #   endif
1723 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
1724 #    define gl_signbitd_OPTIMIZED_MACRO
1725 #    define gl_signbitd(arg) \
1726        ({ union { double _value;                                        \
1727                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
1728                 } _m;                                                   \
1729           _m._value = (arg);                                            \
1730           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
1731         })
1732 #   endif
1733 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
1734 #    define gl_signbitl_OPTIMIZED_MACRO
1735 #    define gl_signbitl(arg) \
1736        ({ union { long double _value;                                   \
1737                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
1738                 } _m;                                                   \
1739           _m._value = (arg);                                            \
1740           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
1741         })
1742 #   endif
1743 #  endif
1744 #  define signbit(x) \
1745    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
1746     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
1747     gl_signbitf (x))
1748 # endif
1749 # ifdef __cplusplus
1750 #  ifdef signbit
1751 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
1752 #   undef signbit
1753 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
1754 #  endif
1755 # endif
1756 #elif defined GNULIB_POSIXCHECK
1757 # if defined signbit
1758 _GL_WARN_REAL_FLOATING_DECL (signbit);
1759 #  undef signbit
1760 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
1761 # endif
1762 #endif
1763
1764
1765 #endif /* _@GUARD_PREFIX@_MATH_H */
1766 #endif /* _@GUARD_PREFIX@_MATH_H */