New module 'copysignf'.
[gnulib.git] / lib / math.in.h
1 /* A GNU-like <math.h>.
2
3    Copyright (C) 2002-2003, 2007-2011 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 /* Helper macros to define a portability warning for the
39    classification macro FUNC called with VALUE.  POSIX declares the
40    classification macros with an argument of real-floating (that is,
41    one of float, double, or long double).  */
42 #define _GL_WARN_REAL_FLOATING_DECL(func) \
43 static inline int                                                   \
44 rpl_ ## func ## f (float f)                                         \
45 {                                                                   \
46   return func (f);                                                  \
47 }                                                                   \
48 static inline int                                                   \
49 rpl_ ## func ## d (double d)                                        \
50 {                                                                   \
51   return func (d);                                                  \
52 }                                                                   \
53 static inline int                                                   \
54 rpl_ ## func ## l (long double l)                                   \
55 {                                                                   \
56   return func (l);                                                  \
57 }                                                                   \
58 _GL_WARN_ON_USE (rpl_ ## func ## f, #func " is unportable - "       \
59                  "use gnulib module " #func " for portability");    \
60 _GL_WARN_ON_USE (rpl_ ## func ## d, #func " is unportable - "       \
61                  "use gnulib module " #func " for portability");    \
62 _GL_WARN_ON_USE (rpl_ ## func ## l, #func " is unportable - "       \
63                  "use gnulib module " #func " for portability")
64 #define _GL_WARN_REAL_FLOATING_IMPL(func, value) \
65   (sizeof (value) == sizeof (float) ? rpl_ ## func ## f (value)     \
66    : sizeof (value) == sizeof (double) ? rpl_ ## func ## d (value)  \
67    : rpl_ ## func ## l (value))
68
69
70 #if @REPLACE_ITOLD@
71 /* Pull in a function that fixes the 'int' to 'long double' conversion
72    of glibc 2.7.  */
73 _GL_EXTERN_C void _Qp_itoq (long double *, int);
74 static void (*_gl_math_fix_itold) (long double *, int) = _Qp_itoq;
75 #endif
76
77
78 /* POSIX allows platforms that don't support NAN.  But all major
79    machines in the past 15 years have supported something close to
80    IEEE NaN, so we define this unconditionally.  We also must define
81    it on platforms like Solaris 10, where NAN is present but defined
82    as a function pointer rather than a floating point constant.  */
83 #if !defined NAN || @REPLACE_NAN@
84 # if !GNULIB_defined_NAN
85 #  undef NAN
86   /* The Compaq (ex-DEC) C 6.4 compiler and the Microsoft MSVC 9 compiler
87      choke on the expression 0.0 / 0.0.  */
88 #  if defined __DECC || defined _MSC_VER
89 static float
90 _NaN ()
91 {
92   static float zero = 0.0f;
93   return zero / zero;
94 }
95 #   define NAN (_NaN())
96 #  else
97 #   define NAN (0.0f / 0.0f)
98 #  endif
99 #  define GNULIB_defined_NAN 1
100 # endif
101 #endif
102
103 /* Solaris 10 defines HUGE_VAL, but as a function pointer rather
104    than a floating point constant.  */
105 #if @REPLACE_HUGE_VAL@
106 # undef HUGE_VAL
107 # define HUGE_VAL (1.0 / 0.0)
108 #endif
109
110
111 #if @GNULIB_ACOSF@
112 # if !@HAVE_ACOSF@
113 #  undef acosf
114 _GL_FUNCDECL_SYS (acosf, float, (float x));
115 # endif
116 _GL_CXXALIAS_SYS (acosf, float, (float x));
117 _GL_CXXALIASWARN (acosf);
118 #elif defined GNULIB_POSIXCHECK
119 # undef acosf
120 # if HAVE_RAW_DECL_ACOSF
121 _GL_WARN_ON_USE (acosf, "acosf is unportable - "
122                  "use gnulib module acosf for portability");
123 # endif
124 #endif
125
126 #if @GNULIB_ACOSL@
127 # if !@HAVE_ACOSL@ || !@HAVE_DECL_ACOSL@
128 _GL_FUNCDECL_SYS (acosl, long double, (long double x));
129 # endif
130 _GL_CXXALIAS_SYS (acosl, long double, (long double x));
131 _GL_CXXALIASWARN (acosl);
132 #elif defined GNULIB_POSIXCHECK
133 # undef acosl
134 # if HAVE_RAW_DECL_ACOSL
135 _GL_WARN_ON_USE (acosl, "acosl is unportable - "
136                  "use gnulib module mathl for portability");
137 # endif
138 #endif
139
140
141 #if @GNULIB_ASINF@
142 # if !@HAVE_ASINF@
143 #  undef asinf
144 _GL_FUNCDECL_SYS (asinf, float, (float x));
145 # endif
146 _GL_CXXALIAS_SYS (asinf, float, (float x));
147 _GL_CXXALIASWARN (asinf);
148 #elif defined GNULIB_POSIXCHECK
149 # undef asinf
150 # if HAVE_RAW_DECL_ASINF
151 _GL_WARN_ON_USE (asinf, "asinf is unportable - "
152                  "use gnulib module asinf for portability");
153 # endif
154 #endif
155
156 #if @GNULIB_ASINL@
157 # if !@HAVE_ASINL@ || !@HAVE_DECL_ASINL@
158 _GL_FUNCDECL_SYS (asinl, long double, (long double x));
159 # endif
160 _GL_CXXALIAS_SYS (asinl, long double, (long double x));
161 _GL_CXXALIASWARN (asinl);
162 #elif defined GNULIB_POSIXCHECK
163 # undef asinl
164 # if HAVE_RAW_DECL_ASINL
165 _GL_WARN_ON_USE (asinl, "asinl is unportable - "
166                  "use gnulib module mathl for portability");
167 # endif
168 #endif
169
170
171 #if @GNULIB_ATANF@
172 # if !@HAVE_ATANF@
173 #  undef atanf
174 _GL_FUNCDECL_SYS (atanf, float, (float x));
175 # endif
176 _GL_CXXALIAS_SYS (atanf, float, (float x));
177 _GL_CXXALIASWARN (atanf);
178 #elif defined GNULIB_POSIXCHECK
179 # undef atanf
180 # if HAVE_RAW_DECL_ATANF
181 _GL_WARN_ON_USE (atanf, "atanf is unportable - "
182                  "use gnulib module atanf for portability");
183 # endif
184 #endif
185
186 #if @GNULIB_ATANL@
187 # if !@HAVE_ATANL@ || !@HAVE_DECL_ATANL@
188 _GL_FUNCDECL_SYS (atanl, long double, (long double x));
189 # endif
190 _GL_CXXALIAS_SYS (atanl, long double, (long double x));
191 _GL_CXXALIASWARN (atanl);
192 #elif defined GNULIB_POSIXCHECK
193 # undef atanl
194 # if HAVE_RAW_DECL_ATANL
195 _GL_WARN_ON_USE (atanl, "atanl is unportable - "
196                  "use gnulib module mathl for portability");
197 # endif
198 #endif
199
200
201 #if @GNULIB_ATAN2F@
202 # if !@HAVE_ATAN2F@
203 #  undef atan2f
204 _GL_FUNCDECL_SYS (atan2f, float, (float y, float x));
205 # endif
206 _GL_CXXALIAS_SYS (atan2f, float, (float y, float x));
207 _GL_CXXALIASWARN (atan2f);
208 #elif defined GNULIB_POSIXCHECK
209 # undef atan2f
210 # if HAVE_RAW_DECL_ATAN2F
211 _GL_WARN_ON_USE (atan2f, "atan2f is unportable - "
212                  "use gnulib module atan2f for portability");
213 # endif
214 #endif
215
216
217 #if @GNULIB_CEILF@
218 # if @REPLACE_CEILF@
219 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
220 #   undef ceilf
221 #   define ceilf rpl_ceilf
222 #  endif
223 _GL_FUNCDECL_RPL (ceilf, float, (float x));
224 _GL_CXXALIAS_RPL (ceilf, float, (float x));
225 # else
226 #  if !@HAVE_DECL_CEILF@
227 _GL_FUNCDECL_SYS (ceilf, float, (float x));
228 #  endif
229 _GL_CXXALIAS_SYS (ceilf, float, (float x));
230 # endif
231 _GL_CXXALIASWARN (ceilf);
232 #elif defined GNULIB_POSIXCHECK
233 # undef ceilf
234 # if HAVE_RAW_DECL_CEILF
235 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
236                  "use gnulib module ceilf for portability");
237 # endif
238 #endif
239
240 #if @GNULIB_CEIL@
241 # if @REPLACE_CEIL@
242 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
243 #   define ceil rpl_ceil
244 #  endif
245 _GL_FUNCDECL_RPL (ceil, double, (double x));
246 _GL_CXXALIAS_RPL (ceil, double, (double x));
247 # else
248 _GL_CXXALIAS_SYS (ceil, double, (double x));
249 # endif
250 _GL_CXXALIASWARN (ceil);
251 #endif
252
253 #if @GNULIB_CEILL@
254 # if @REPLACE_CEILL@
255 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
256 #   undef ceill
257 #   define ceill rpl_ceill
258 #  endif
259 _GL_FUNCDECL_RPL (ceill, long double, (long double x));
260 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
261 # else
262 #  if !@HAVE_DECL_CEILL@
263 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
264 #  endif
265 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
266 # endif
267 _GL_CXXALIASWARN (ceill);
268 #elif defined GNULIB_POSIXCHECK
269 # undef ceill
270 # if HAVE_RAW_DECL_CEILL
271 _GL_WARN_ON_USE (ceill, "ceill is unportable - "
272                  "use gnulib module ceill for portability");
273 # endif
274 #endif
275
276
277 #if @GNULIB_COPYSIGNF@
278 # if !@HAVE_COPYSIGNF@
279 _GL_FUNCDECL_SYS (copysignf, float, (float x, float y));
280 # endif
281 _GL_CXXALIAS_SYS (copysignf, float, (float x, float y));
282 _GL_CXXALIASWARN (copysignf);
283 #elif defined GNULIB_POSIXCHECK
284 # undef copysignf
285 # if HAVE_RAW_DECL_COPYSIGNF
286 _GL_WARN_ON_USE (copysignf, "copysignf is unportable - "
287                  "use gnulib module copysignf for portability");
288 # endif
289 #endif
290
291 #if @GNULIB_COPYSIGN@
292 # if !@HAVE_COPYSIGN@
293 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
294 # endif
295 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
296 _GL_CXXALIASWARN (copysign);
297 #elif defined GNULIB_POSIXCHECK
298 # undef copysign
299 # if HAVE_RAW_DECL_COPYSIGN
300 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
301                  "use gnulib module copysign for portability");
302 # endif
303 #endif
304
305
306 #if @GNULIB_COSF@
307 # if !@HAVE_COSF@
308 #  undef cosf
309 _GL_FUNCDECL_SYS (cosf, float, (float x));
310 # endif
311 _GL_CXXALIAS_SYS (cosf, float, (float x));
312 _GL_CXXALIASWARN (cosf);
313 #elif defined GNULIB_POSIXCHECK
314 # undef cosf
315 # if HAVE_RAW_DECL_COSF
316 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
317                  "use gnulib module cosf for portability");
318 # endif
319 #endif
320
321 #if @GNULIB_COSL@
322 # if !@HAVE_COSL@ || !@HAVE_DECL_COSL@
323 _GL_FUNCDECL_SYS (cosl, long double, (long double x));
324 # endif
325 _GL_CXXALIAS_SYS (cosl, long double, (long double x));
326 _GL_CXXALIASWARN (cosl);
327 #elif defined GNULIB_POSIXCHECK
328 # undef cosl
329 # if HAVE_RAW_DECL_COSL
330 _GL_WARN_ON_USE (cosl, "cosl is unportable - "
331                  "use gnulib module mathl for portability");
332 # endif
333 #endif
334
335
336 #if @GNULIB_COSHF@
337 # if !@HAVE_COSHF@
338 #  undef coshf
339 _GL_FUNCDECL_SYS (coshf, float, (float x));
340 # endif
341 _GL_CXXALIAS_SYS (coshf, float, (float x));
342 _GL_CXXALIASWARN (coshf);
343 #elif defined GNULIB_POSIXCHECK
344 # undef coshf
345 # if HAVE_RAW_DECL_COSHF
346 _GL_WARN_ON_USE (coshf, "coshf is unportable - "
347                  "use gnulib module coshf for portability");
348 # endif
349 #endif
350
351
352 #if @GNULIB_EXPF@
353 # if !@HAVE_EXPF@
354 #  undef expf
355 _GL_FUNCDECL_SYS (expf, float, (float x));
356 # endif
357 _GL_CXXALIAS_SYS (expf, float, (float x));
358 _GL_CXXALIASWARN (expf);
359 #elif defined GNULIB_POSIXCHECK
360 # undef expf
361 # if HAVE_RAW_DECL_EXPF
362 _GL_WARN_ON_USE (expf, "expf is unportable - "
363                  "use gnulib module expf for portability");
364 # endif
365 #endif
366
367 #if @GNULIB_EXPL@
368 # if !@HAVE_EXPL@ || !@HAVE_DECL_EXPL@
369 _GL_FUNCDECL_SYS (expl, long double, (long double x));
370 # endif
371 _GL_CXXALIAS_SYS (expl, long double, (long double x));
372 _GL_CXXALIASWARN (expl);
373 #elif defined GNULIB_POSIXCHECK
374 # undef expl
375 # if HAVE_RAW_DECL_EXPL
376 _GL_WARN_ON_USE (expl, "expl is unportable - "
377                  "use gnulib module mathl for portability");
378 # endif
379 #endif
380
381
382 #if @GNULIB_FABSF@
383 # if !@HAVE_FABSF@
384 #  undef fabsf
385 _GL_FUNCDECL_SYS (fabsf, float, (float x));
386 # endif
387 _GL_CXXALIAS_SYS (fabsf, float, (float x));
388 _GL_CXXALIASWARN (fabsf);
389 #elif defined GNULIB_POSIXCHECK
390 # undef fabsf
391 # if HAVE_RAW_DECL_FABSF
392 _GL_WARN_ON_USE (fabsf, "fabsf is unportable - "
393                  "use gnulib module fabsf for portability");
394 # endif
395 #endif
396
397
398 #if @GNULIB_FLOORF@
399 # if @REPLACE_FLOORF@
400 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
401 #   undef floorf
402 #   define floorf rpl_floorf
403 #  endif
404 _GL_FUNCDECL_RPL (floorf, float, (float x));
405 _GL_CXXALIAS_RPL (floorf, float, (float x));
406 # else
407 #  if !@HAVE_DECL_FLOORF@
408 _GL_FUNCDECL_SYS (floorf, float, (float x));
409 #  endif
410 _GL_CXXALIAS_SYS (floorf, float, (float x));
411 # endif
412 _GL_CXXALIASWARN (floorf);
413 #elif defined GNULIB_POSIXCHECK
414 # undef floorf
415 # if HAVE_RAW_DECL_FLOORF
416 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
417                  "use gnulib module floorf for portability");
418 # endif
419 #endif
420
421 #if @GNULIB_FLOOR@
422 # if @REPLACE_FLOOR@
423 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
424 #   define floor rpl_floor
425 #  endif
426 _GL_FUNCDECL_RPL (floor, double, (double x));
427 _GL_CXXALIAS_RPL (floor, double, (double x));
428 # else
429 _GL_CXXALIAS_SYS (floor, double, (double x));
430 # endif
431 _GL_CXXALIASWARN (floor);
432 #endif
433
434 #if @GNULIB_FLOORL@
435 # if @REPLACE_FLOORL@
436 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
437 #   undef floorl
438 #   define floorl rpl_floorl
439 #  endif
440 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
441 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
442 # else
443 #  if !@HAVE_DECL_FLOORL@
444 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
445 #  endif
446 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
447 # endif
448 _GL_CXXALIASWARN (floorl);
449 #elif defined GNULIB_POSIXCHECK
450 # undef floorl
451 # if HAVE_RAW_DECL_FLOORL
452 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
453                  "use gnulib module floorl for portability");
454 # endif
455 #endif
456
457
458 #if @GNULIB_FMODF@
459 # if !@HAVE_FMODF@
460 #  undef fmodf
461 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
462 # endif
463 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
464 _GL_CXXALIASWARN (fmodf);
465 #elif defined GNULIB_POSIXCHECK
466 # undef fmodf
467 # if HAVE_RAW_DECL_FMODF
468 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
469                  "use gnulib module fmodf for portability");
470 # endif
471 #endif
472
473
474 /* Write x as
475      x = mantissa * 2^exp
476    where
477      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
478      If x is zero: mantissa = x, exp = 0.
479      If x is infinite or NaN: mantissa = x, exp unspecified.
480    Store exp in *EXPPTR and return mantissa.  */
481 #if @GNULIB_FREXPF@
482 # if @REPLACE_FREXPF@
483 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
484 #   undef frexpf
485 #   define frexpf rpl_frexpf
486 #  endif
487 _GL_FUNCDECL_RPL (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
488 _GL_CXXALIAS_RPL (frexpf, float, (float x, int *expptr));
489 # else
490 #  if !@HAVE_FREXPF@
491 #   undef frexpf
492 _GL_FUNCDECL_SYS (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
493 #  endif
494 _GL_CXXALIAS_SYS (frexpf, float, (float x, int *expptr));
495 # endif
496 _GL_CXXALIASWARN (frexpf);
497 #elif defined GNULIB_POSIXCHECK
498 # undef frexpf
499 # if HAVE_RAW_DECL_FREXPF
500 _GL_WARN_ON_USE (frexpf, "frexpf is unportable - "
501                  "use gnulib module frexpf for portability");
502 # endif
503 #endif
504
505 /* Write x as
506      x = mantissa * 2^exp
507    where
508      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
509      If x is zero: mantissa = x, exp = 0.
510      If x is infinite or NaN: mantissa = x, exp unspecified.
511    Store exp in *EXPPTR and return mantissa.  */
512 #if @GNULIB_FREXP@
513 # if @REPLACE_FREXP@
514 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
515 #   define frexp rpl_frexp
516 #  endif
517 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
518 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
519 # else
520 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
521 # endif
522 _GL_CXXALIASWARN (frexp);
523 #elif defined GNULIB_POSIXCHECK
524 # undef frexp
525 /* Assume frexp is always declared.  */
526 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
527                  "use gnulib module frexp for portability");
528 #endif
529
530 /* Write x as
531      x = mantissa * 2^exp
532    where
533      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
534      If x is zero: mantissa = x, exp = 0.
535      If x is infinite or NaN: mantissa = x, exp unspecified.
536    Store exp in *EXPPTR and return mantissa.  */
537 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
538 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
539 #  undef frexpl
540 #  define frexpl rpl_frexpl
541 # endif
542 _GL_FUNCDECL_RPL (frexpl, long double,
543                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
544 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
545 #else
546 # if !@HAVE_DECL_FREXPL@
547 _GL_FUNCDECL_SYS (frexpl, long double,
548                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
549 # endif
550 # if @GNULIB_FREXPL@
551 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
552 # endif
553 #endif
554 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
555 _GL_CXXALIASWARN (frexpl);
556 #endif
557 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
558 # undef frexpl
559 # if HAVE_RAW_DECL_FREXPL
560 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
561                  "use gnulib module frexpl for portability");
562 # endif
563 #endif
564
565
566 /* Return x * 2^exp.  */
567 #if @GNULIB_LDEXPF@
568 # if !@HAVE_LDEXPF@
569 #  undef ldexpf
570 _GL_FUNCDECL_SYS (ldexpf, float, (float x, int exp));
571 # endif
572 _GL_CXXALIAS_SYS (ldexpf, float, (float x, int exp));
573 _GL_CXXALIASWARN (ldexpf);
574 #elif defined GNULIB_POSIXCHECK
575 # undef ldexpf
576 # if HAVE_RAW_DECL_LDEXPF
577 _GL_WARN_ON_USE (ldexpf, "ldexpf is unportable - "
578                  "use gnulib module ldexpf for portability");
579 # endif
580 #endif
581
582 /* Return x * 2^exp.  */
583 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
584 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
585 #  undef ldexpl
586 #  define ldexpl rpl_ldexpl
587 # endif
588 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
589 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
590 #else
591 # if !@HAVE_DECL_LDEXPL@
592 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
593 # endif
594 # if @GNULIB_LDEXPL@
595 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
596 # endif
597 #endif
598 #if @GNULIB_LDEXPL@
599 _GL_CXXALIASWARN (ldexpl);
600 #endif
601 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
602 # undef ldexpl
603 # if HAVE_RAW_DECL_LDEXPL
604 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
605                  "use gnulib module ldexpl for portability");
606 # endif
607 #endif
608
609
610 #if @GNULIB_LOGB@
611 # if !@HAVE_DECL_LOGB@
612 _GL_EXTERN_C double logb (double x);
613 # endif
614 #elif defined GNULIB_POSIXCHECK
615 # undef logb
616 # if HAVE_RAW_DECL_LOGB
617 _GL_WARN_ON_USE (logb, "logb is unportable - "
618                  "use gnulib module logb for portability");
619 # endif
620 #endif
621
622
623 #if @GNULIB_LOGF@
624 # if !@HAVE_LOGF@
625 #  undef logf
626 _GL_FUNCDECL_SYS (logf, float, (float x));
627 # endif
628 _GL_CXXALIAS_SYS (logf, float, (float x));
629 _GL_CXXALIASWARN (logf);
630 #elif defined GNULIB_POSIXCHECK
631 # undef logf
632 # if HAVE_RAW_DECL_LOGF
633 _GL_WARN_ON_USE (logf, "logf is unportable - "
634                  "use gnulib module logf for portability");
635 # endif
636 #endif
637
638 #if @GNULIB_LOGL@
639 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
640 _GL_FUNCDECL_SYS (logl, long double, (long double x));
641 # endif
642 _GL_CXXALIAS_SYS (logl, long double, (long double x));
643 _GL_CXXALIASWARN (logl);
644 #elif defined GNULIB_POSIXCHECK
645 # undef logl
646 # if HAVE_RAW_DECL_LOGL
647 _GL_WARN_ON_USE (logl, "logl is unportable - "
648                  "use gnulib module mathl for portability");
649 # endif
650 #endif
651
652
653 #if @GNULIB_LOG10F@
654 # if !@HAVE_LOG10F@
655 #  undef log10f
656 _GL_FUNCDECL_SYS (log10f, float, (float x));
657 # endif
658 _GL_CXXALIAS_SYS (log10f, float, (float x));
659 _GL_CXXALIASWARN (log10f);
660 #elif defined GNULIB_POSIXCHECK
661 # undef log10f
662 # if HAVE_RAW_DECL_LOG10F
663 _GL_WARN_ON_USE (log10f, "log10f is unportable - "
664                  "use gnulib module log10f for portability");
665 # endif
666 #endif
667
668
669 #if @GNULIB_MODFF@
670 # if !@HAVE_MODFF@
671 #  undef modff
672 _GL_FUNCDECL_SYS (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
673 # endif
674 _GL_CXXALIAS_SYS (modff, float, (float x, float *iptr));
675 _GL_CXXALIASWARN (modff);
676 #elif defined GNULIB_POSIXCHECK
677 # undef modff
678 # if HAVE_RAW_DECL_MODFF
679 _GL_WARN_ON_USE (modff, "modff is unportable - "
680                  "use gnulib module modff for portability");
681 # endif
682 #endif
683
684
685 #if @GNULIB_POWF@
686 # if !@HAVE_POWF@
687 #  undef powf
688 _GL_FUNCDECL_SYS (powf, float, (float x, float y));
689 # endif
690 _GL_CXXALIAS_SYS (powf, float, (float x, float y));
691 _GL_CXXALIASWARN (powf);
692 #elif defined GNULIB_POSIXCHECK
693 # undef powf
694 # if HAVE_RAW_DECL_POWF
695 _GL_WARN_ON_USE (powf, "powf is unportable - "
696                  "use gnulib module powf for portability");
697 # endif
698 #endif
699
700
701 #if @GNULIB_ROUNDF@
702 # if @REPLACE_ROUNDF@
703 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
704 #   undef roundf
705 #   define roundf rpl_roundf
706 #  endif
707 _GL_FUNCDECL_RPL (roundf, float, (float x));
708 _GL_CXXALIAS_RPL (roundf, float, (float x));
709 # else
710 #  if !@HAVE_DECL_ROUNDF@
711 _GL_FUNCDECL_SYS (roundf, float, (float x));
712 #  endif
713 _GL_CXXALIAS_SYS (roundf, float, (float x));
714 # endif
715 _GL_CXXALIASWARN (roundf);
716 #elif defined GNULIB_POSIXCHECK
717 # undef roundf
718 # if HAVE_RAW_DECL_ROUNDF
719 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
720                  "use gnulib module roundf for portability");
721 # endif
722 #endif
723
724 #if @GNULIB_ROUND@
725 # if @REPLACE_ROUND@
726 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
727 #   undef round
728 #   define round rpl_round
729 #  endif
730 _GL_FUNCDECL_RPL (round, double, (double x));
731 _GL_CXXALIAS_RPL (round, double, (double x));
732 # else
733 #  if !@HAVE_DECL_ROUND@
734 _GL_FUNCDECL_SYS (round, double, (double x));
735 #  endif
736 _GL_CXXALIAS_SYS (round, double, (double x));
737 # endif
738 _GL_CXXALIASWARN (round);
739 #elif defined GNULIB_POSIXCHECK
740 # undef round
741 # if HAVE_RAW_DECL_ROUND
742 _GL_WARN_ON_USE (round, "round is unportable - "
743                  "use gnulib module round for portability");
744 # endif
745 #endif
746
747 #if @GNULIB_ROUNDL@
748 # if @REPLACE_ROUNDL@
749 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
750 #   undef roundl
751 #   define roundl rpl_roundl
752 #  endif
753 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
754 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
755 # else
756 #  if !@HAVE_DECL_ROUNDL@
757 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
758 #  endif
759 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
760 # endif
761 _GL_CXXALIASWARN (roundl);
762 #elif defined GNULIB_POSIXCHECK
763 # undef roundl
764 # if HAVE_RAW_DECL_ROUNDL
765 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
766                  "use gnulib module roundl for portability");
767 # endif
768 #endif
769
770
771 #if @GNULIB_SINF@
772 # if !@HAVE_SINF@
773 #  undef sinf
774 _GL_FUNCDECL_SYS (sinf, float, (float x));
775 # endif
776 _GL_CXXALIAS_SYS (sinf, float, (float x));
777 _GL_CXXALIASWARN (sinf);
778 #elif defined GNULIB_POSIXCHECK
779 # undef sinf
780 # if HAVE_RAW_DECL_SINF
781 _GL_WARN_ON_USE (sinf, "sinf is unportable - "
782                  "use gnulib module sinf for portability");
783 # endif
784 #endif
785
786 #if @GNULIB_SINL@
787 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
788 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
789 # endif
790 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
791 _GL_CXXALIASWARN (sinl);
792 #elif defined GNULIB_POSIXCHECK
793 # undef sinl
794 # if HAVE_RAW_DECL_SINL
795 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
796                  "use gnulib module mathl for portability");
797 # endif
798 #endif
799
800
801 #if @GNULIB_SINHF@
802 # if !@HAVE_SINHF@
803 #  undef sinhf
804 _GL_FUNCDECL_SYS (sinhf, float, (float x));
805 # endif
806 _GL_CXXALIAS_SYS (sinhf, float, (float x));
807 _GL_CXXALIASWARN (sinhf);
808 #elif defined GNULIB_POSIXCHECK
809 # undef sinhf
810 # if HAVE_RAW_DECL_SINHF
811 _GL_WARN_ON_USE (sinhf, "sinhf is unportable - "
812                  "use gnulib module sinhf for portability");
813 # endif
814 #endif
815
816
817 #if @GNULIB_SQRTF@
818 # if !@HAVE_SQRTF@
819 #  undef sqrtf
820 _GL_FUNCDECL_SYS (sqrtf, float, (float x));
821 # endif
822 _GL_CXXALIAS_SYS (sqrtf, float, (float x));
823 _GL_CXXALIASWARN (sqrtf);
824 #elif defined GNULIB_POSIXCHECK
825 # undef sqrtf
826 # if HAVE_RAW_DECL_SQRTF
827 _GL_WARN_ON_USE (sqrtf, "sqrtf is unportable - "
828                  "use gnulib module sqrtf for portability");
829 # endif
830 #endif
831
832 #if @GNULIB_SQRTL@
833 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
834 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
835 # endif
836 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
837 _GL_CXXALIASWARN (sqrtl);
838 #elif defined GNULIB_POSIXCHECK
839 # undef sqrtl
840 # if HAVE_RAW_DECL_SQRTL
841 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
842                  "use gnulib module mathl for portability");
843 # endif
844 #endif
845
846
847 #if @GNULIB_TANF@
848 # if !@HAVE_TANF@
849 #  undef tanf
850 _GL_FUNCDECL_SYS (tanf, float, (float x));
851 # endif
852 _GL_CXXALIAS_SYS (tanf, float, (float x));
853 _GL_CXXALIASWARN (tanf);
854 #elif defined GNULIB_POSIXCHECK
855 # undef tanf
856 # if HAVE_RAW_DECL_TANF
857 _GL_WARN_ON_USE (tanf, "tanf is unportable - "
858                  "use gnulib module tanf for portability");
859 # endif
860 #endif
861
862 #if @GNULIB_TANL@
863 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
864 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
865 # endif
866 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
867 _GL_CXXALIASWARN (tanl);
868 #elif defined GNULIB_POSIXCHECK
869 # undef tanl
870 # if HAVE_RAW_DECL_TANL
871 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
872                  "use gnulib module mathl for portability");
873 # endif
874 #endif
875
876
877 #if @GNULIB_TANHF@
878 # if !@HAVE_TANHF@
879 #  undef tanhf
880 _GL_FUNCDECL_SYS (tanhf, float, (float x));
881 # endif
882 _GL_CXXALIAS_SYS (tanhf, float, (float x));
883 _GL_CXXALIASWARN (tanhf);
884 #elif defined GNULIB_POSIXCHECK
885 # undef tanhf
886 # if HAVE_RAW_DECL_TANHF
887 _GL_WARN_ON_USE (tanhf, "tanhf is unportable - "
888                  "use gnulib module tanhf for portability");
889 # endif
890 #endif
891
892
893 #if @GNULIB_TRUNCF@
894 # if @REPLACE_TRUNCF@
895 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
896 #   define truncf rpl_truncf
897 #  endif
898 _GL_FUNCDECL_RPL (truncf, float, (float x));
899 _GL_CXXALIAS_RPL (truncf, float, (float x));
900 # else
901 #  if !@HAVE_DECL_TRUNCF@
902 _GL_FUNCDECL_SYS (truncf, float, (float x));
903 #  endif
904 _GL_CXXALIAS_SYS (truncf, float, (float x));
905 # endif
906 _GL_CXXALIASWARN (truncf);
907 #elif defined GNULIB_POSIXCHECK
908 # undef truncf
909 # if HAVE_RAW_DECL_TRUNCF
910 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
911                  "use gnulib module truncf for portability");
912 # endif
913 #endif
914
915 #if @GNULIB_TRUNC@
916 # if @REPLACE_TRUNC@
917 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
918 #   define trunc rpl_trunc
919 #  endif
920 _GL_FUNCDECL_RPL (trunc, double, (double x));
921 _GL_CXXALIAS_RPL (trunc, double, (double x));
922 # else
923 #  if !@HAVE_DECL_TRUNC@
924 _GL_FUNCDECL_SYS (trunc, double, (double x));
925 #  endif
926 _GL_CXXALIAS_SYS (trunc, double, (double x));
927 # endif
928 _GL_CXXALIASWARN (trunc);
929 #elif defined GNULIB_POSIXCHECK
930 # undef trunc
931 # if HAVE_RAW_DECL_TRUNC
932 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
933                  "use gnulib module trunc for portability");
934 # endif
935 #endif
936
937 #if @GNULIB_TRUNCL@
938 # if @REPLACE_TRUNCL@
939 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
940 #   undef truncl
941 #   define truncl rpl_truncl
942 #  endif
943 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
944 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
945 # else
946 #  if !@HAVE_DECL_TRUNCL@
947 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
948 #  endif
949 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
950 # endif
951 _GL_CXXALIASWARN (truncl);
952 #elif defined GNULIB_POSIXCHECK
953 # undef truncl
954 # if HAVE_RAW_DECL_TRUNCL
955 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
956                  "use gnulib module truncl for portability");
957 # endif
958 #endif
959
960
961 /* Definitions of function-like macros come here, after the function
962    declarations.  */
963
964
965 #if @GNULIB_ISFINITE@
966 # if @REPLACE_ISFINITE@
967 _GL_EXTERN_C int gl_isfinitef (float x);
968 _GL_EXTERN_C int gl_isfinited (double x);
969 _GL_EXTERN_C int gl_isfinitel (long double x);
970 #  undef isfinite
971 #  define isfinite(x) \
972    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
973     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
974     gl_isfinitef (x))
975 # endif
976 #elif defined GNULIB_POSIXCHECK
977 # if defined isfinite
978 _GL_WARN_REAL_FLOATING_DECL (isfinite);
979 #  undef isfinite
980 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
981 # endif
982 #endif
983
984
985 #if @GNULIB_ISINF@
986 # if @REPLACE_ISINF@
987 _GL_EXTERN_C int gl_isinff (float x);
988 _GL_EXTERN_C int gl_isinfd (double x);
989 _GL_EXTERN_C int gl_isinfl (long double x);
990 #  undef isinf
991 #  define isinf(x) \
992    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
993     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
994     gl_isinff (x))
995 # endif
996 #elif defined GNULIB_POSIXCHECK
997 # if defined isinf
998 _GL_WARN_REAL_FLOATING_DECL (isinf);
999 #  undef isinf
1000 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
1001 # endif
1002 #endif
1003
1004
1005 #if @GNULIB_ISNANF@
1006 /* Test for NaN for 'float' numbers.  */
1007 # if @HAVE_ISNANF@
1008 /* The original <math.h> included above provides a declaration of isnan macro
1009    or (older) isnanf function.  */
1010 #  if __GNUC__ >= 4
1011     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1012 #   undef isnanf
1013 #   define isnanf(x) __builtin_isnanf ((float)(x))
1014 #  elif defined isnan
1015 #   undef isnanf
1016 #   define isnanf(x) isnan ((float)(x))
1017 #  endif
1018 # else
1019 /* Test whether X is a NaN.  */
1020 #  undef isnanf
1021 #  define isnanf rpl_isnanf
1022 _GL_EXTERN_C int isnanf (float x);
1023 # endif
1024 #endif
1025
1026 #if @GNULIB_ISNAND@
1027 /* Test for NaN for 'double' numbers.
1028    This function is a gnulib extension, unlike isnan() which applied only
1029    to 'double' numbers earlier but now is a type-generic macro.  */
1030 # if @HAVE_ISNAND@
1031 /* The original <math.h> included above provides a declaration of isnan
1032    macro.  */
1033 #  if __GNUC__ >= 4
1034     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1035 #   undef isnand
1036 #   define isnand(x) __builtin_isnan ((double)(x))
1037 #  else
1038 #   undef isnand
1039 #   define isnand(x) isnan ((double)(x))
1040 #  endif
1041 # else
1042 /* Test whether X is a NaN.  */
1043 #  undef isnand
1044 #  define isnand rpl_isnand
1045 _GL_EXTERN_C int isnand (double x);
1046 # endif
1047 #endif
1048
1049 #if @GNULIB_ISNANL@
1050 /* Test for NaN for 'long double' numbers.  */
1051 # if @HAVE_ISNANL@
1052 /* The original <math.h> included above provides a declaration of isnan
1053    macro or (older) isnanl function.  */
1054 #  if __GNUC__ >= 4
1055     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1056 #   undef isnanl
1057 #   define isnanl(x) __builtin_isnanl ((long double)(x))
1058 #  elif defined isnan
1059 #   undef isnanl
1060 #   define isnanl(x) isnan ((long double)(x))
1061 #  endif
1062 # else
1063 /* Test whether X is a NaN.  */
1064 #  undef isnanl
1065 #  define isnanl rpl_isnanl
1066 _GL_EXTERN_C int isnanl (long double x);
1067 # endif
1068 #endif
1069
1070 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
1071 #if @GNULIB_ISNAN@
1072 # if @REPLACE_ISNAN@
1073 /* We can't just use the isnanf macro (e.g.) as exposed by
1074    isnanf.h (e.g.) here, because those may end up being macros
1075    that recursively expand back to isnan.  So use the gnulib
1076    replacements for them directly. */
1077 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
1078 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
1079 #  else
1080 _GL_EXTERN_C int rpl_isnanf (float x);
1081 #   define gl_isnan_f(x) rpl_isnanf (x)
1082 #  endif
1083 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
1084 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
1085 #  else
1086 _GL_EXTERN_C int rpl_isnand (double x);
1087 #   define gl_isnan_d(x) rpl_isnand (x)
1088 #  endif
1089 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
1090 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
1091 #  else
1092 _GL_EXTERN_C int rpl_isnanl (long double x);
1093 #   define gl_isnan_l(x) rpl_isnanl (x)
1094 #  endif
1095 #  undef isnan
1096 #  define isnan(x) \
1097    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
1098     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
1099     gl_isnan_f (x))
1100 # elif __GNUC__ >= 4
1101 #  undef isnan
1102 #  define isnan(x) \
1103    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
1104     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
1105     __builtin_isnanf ((float)(x)))
1106 # endif
1107 /* Ensure isnan is a macro.  */
1108 # ifndef isnan
1109 #  define isnan isnan
1110 # endif
1111 #elif defined GNULIB_POSIXCHECK
1112 # if defined isnan
1113 _GL_WARN_REAL_FLOATING_DECL (isnan);
1114 #  undef isnan
1115 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
1116 # endif
1117 #endif
1118
1119
1120 #if @GNULIB_SIGNBIT@
1121 # if @REPLACE_SIGNBIT_USING_GCC@
1122 #  undef signbit
1123    /* GCC 4.0 and newer provides three built-ins for signbit.  */
1124 #  define signbit(x) \
1125    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
1126     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
1127     __builtin_signbitf (x))
1128 # endif
1129 # if @REPLACE_SIGNBIT@
1130 #  undef signbit
1131 _GL_EXTERN_C int gl_signbitf (float arg);
1132 _GL_EXTERN_C int gl_signbitd (double arg);
1133 _GL_EXTERN_C int gl_signbitl (long double arg);
1134 #  if __GNUC__ >= 2 && !__STRICT_ANSI__
1135 #   define _GL_NUM_UINT_WORDS(type) \
1136       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
1137 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
1138 #    define gl_signbitf_OPTIMIZED_MACRO
1139 #    define gl_signbitf(arg) \
1140        ({ union { float _value;                                         \
1141                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
1142                 } _m;                                                   \
1143           _m._value = (arg);                                            \
1144           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
1145         })
1146 #   endif
1147 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
1148 #    define gl_signbitd_OPTIMIZED_MACRO
1149 #    define gl_signbitd(arg) \
1150        ({ union { double _value;                                        \
1151                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
1152                 } _m;                                                   \
1153           _m._value = (arg);                                            \
1154           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
1155         })
1156 #   endif
1157 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
1158 #    define gl_signbitl_OPTIMIZED_MACRO
1159 #    define gl_signbitl(arg) \
1160        ({ union { long double _value;                                   \
1161                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
1162                 } _m;                                                   \
1163           _m._value = (arg);                                            \
1164           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
1165         })
1166 #   endif
1167 #  endif
1168 #  define signbit(x) \
1169    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
1170     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
1171     gl_signbitf (x))
1172 # endif
1173 #elif defined GNULIB_POSIXCHECK
1174 # if defined signbit
1175 _GL_WARN_REAL_FLOATING_DECL (signbit);
1176 #  undef signbit
1177 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
1178 # endif
1179 #endif
1180
1181
1182 #endif /* _@GUARD_PREFIX@_MATH_H */
1183 #endif /* _@GUARD_PREFIX@_MATH_H */