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