mark functions with const and pure attributes
[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 #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_VAL
145 # define HUGE_VAL (1.0 / 0.0)
146 #endif
147
148
149 #if @GNULIB_ACOSF@
150 # if !@HAVE_ACOSF@
151 #  undef acosf
152 _GL_FUNCDECL_SYS (acosf, float, (float x));
153 # endif
154 _GL_CXXALIAS_SYS (acosf, float, (float x));
155 _GL_CXXALIASWARN (acosf);
156 #elif defined GNULIB_POSIXCHECK
157 # undef acosf
158 # if HAVE_RAW_DECL_ACOSF
159 _GL_WARN_ON_USE (acosf, "acosf is unportable - "
160                  "use gnulib module acosf for portability");
161 # endif
162 #endif
163
164 #if @GNULIB_ACOSL@
165 # if !@HAVE_ACOSL@ || !@HAVE_DECL_ACOSL@
166 _GL_FUNCDECL_SYS (acosl, long double, (long double x));
167 # endif
168 _GL_CXXALIAS_SYS (acosl, long double, (long double x));
169 _GL_CXXALIASWARN (acosl);
170 #elif defined GNULIB_POSIXCHECK
171 # undef acosl
172 # if HAVE_RAW_DECL_ACOSL
173 _GL_WARN_ON_USE (acosl, "acosl is unportable - "
174                  "use gnulib module mathl for portability");
175 # endif
176 #endif
177
178
179 #if @GNULIB_ASINF@
180 # if !@HAVE_ASINF@
181 #  undef asinf
182 _GL_FUNCDECL_SYS (asinf, float, (float x));
183 # endif
184 _GL_CXXALIAS_SYS (asinf, float, (float x));
185 _GL_CXXALIASWARN (asinf);
186 #elif defined GNULIB_POSIXCHECK
187 # undef asinf
188 # if HAVE_RAW_DECL_ASINF
189 _GL_WARN_ON_USE (asinf, "asinf is unportable - "
190                  "use gnulib module asinf for portability");
191 # endif
192 #endif
193
194 #if @GNULIB_ASINL@
195 # if !@HAVE_ASINL@ || !@HAVE_DECL_ASINL@
196 _GL_FUNCDECL_SYS (asinl, long double, (long double x));
197 # endif
198 _GL_CXXALIAS_SYS (asinl, long double, (long double x));
199 _GL_CXXALIASWARN (asinl);
200 #elif defined GNULIB_POSIXCHECK
201 # undef asinl
202 # if HAVE_RAW_DECL_ASINL
203 _GL_WARN_ON_USE (asinl, "asinl is unportable - "
204                  "use gnulib module mathl for portability");
205 # endif
206 #endif
207
208
209 #if @GNULIB_ATANF@
210 # if !@HAVE_ATANF@
211 #  undef atanf
212 _GL_FUNCDECL_SYS (atanf, float, (float x));
213 # endif
214 _GL_CXXALIAS_SYS (atanf, float, (float x));
215 _GL_CXXALIASWARN (atanf);
216 #elif defined GNULIB_POSIXCHECK
217 # undef atanf
218 # if HAVE_RAW_DECL_ATANF
219 _GL_WARN_ON_USE (atanf, "atanf is unportable - "
220                  "use gnulib module atanf for portability");
221 # endif
222 #endif
223
224 #if @GNULIB_ATANL@
225 # if !@HAVE_ATANL@ || !@HAVE_DECL_ATANL@
226 _GL_FUNCDECL_SYS (atanl, long double, (long double x));
227 # endif
228 _GL_CXXALIAS_SYS (atanl, long double, (long double x));
229 _GL_CXXALIASWARN (atanl);
230 #elif defined GNULIB_POSIXCHECK
231 # undef atanl
232 # if HAVE_RAW_DECL_ATANL
233 _GL_WARN_ON_USE (atanl, "atanl is unportable - "
234                  "use gnulib module mathl for portability");
235 # endif
236 #endif
237
238
239 #if @GNULIB_ATAN2F@
240 # if !@HAVE_ATAN2F@
241 #  undef atan2f
242 _GL_FUNCDECL_SYS (atan2f, float, (float y, float x));
243 # endif
244 _GL_CXXALIAS_SYS (atan2f, float, (float y, float x));
245 _GL_CXXALIASWARN (atan2f);
246 #elif defined GNULIB_POSIXCHECK
247 # undef atan2f
248 # if HAVE_RAW_DECL_ATAN2F
249 _GL_WARN_ON_USE (atan2f, "atan2f is unportable - "
250                  "use gnulib module atan2f for portability");
251 # endif
252 #endif
253
254
255 #if @GNULIB_CEILF@
256 # if @REPLACE_CEILF@
257 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
258 #   undef ceilf
259 #   define ceilf rpl_ceilf
260 #  endif
261 _GL_FUNCDECL_RPL (ceilf, float, (float x));
262 _GL_CXXALIAS_RPL (ceilf, float, (float x));
263 # else
264 #  if !@HAVE_DECL_CEILF@
265 _GL_FUNCDECL_SYS (ceilf, float, (float x));
266 #  endif
267 _GL_CXXALIAS_SYS (ceilf, float, (float x));
268 # endif
269 _GL_CXXALIASWARN (ceilf);
270 #elif defined GNULIB_POSIXCHECK
271 # undef ceilf
272 # if HAVE_RAW_DECL_CEILF
273 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
274                  "use gnulib module ceilf for portability");
275 # endif
276 #endif
277
278 #if @GNULIB_CEIL@
279 # if @REPLACE_CEIL@
280 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
281 #   define ceil rpl_ceil
282 #  endif
283 _GL_FUNCDECL_RPL (ceil, double, (double x));
284 _GL_CXXALIAS_RPL (ceil, double, (double x));
285 # else
286 _GL_CXXALIAS_SYS (ceil, double, (double x));
287 # endif
288 _GL_CXXALIASWARN (ceil);
289 #endif
290
291 #if @GNULIB_CEILL@
292 # if @REPLACE_CEILL@
293 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
294 #   undef ceill
295 #   define ceill rpl_ceill
296 #  endif
297 _GL_FUNCDECL_RPL (ceill, long double, (long double x));
298 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
299 # else
300 #  if !@HAVE_DECL_CEILL@
301 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
302 #  endif
303 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
304 # endif
305 _GL_CXXALIASWARN (ceill);
306 #elif defined GNULIB_POSIXCHECK
307 # undef ceill
308 # if HAVE_RAW_DECL_CEILL
309 _GL_WARN_ON_USE (ceill, "ceill is unportable - "
310                  "use gnulib module ceill for portability");
311 # endif
312 #endif
313
314
315 #if @GNULIB_COPYSIGNF@
316 # if !@HAVE_COPYSIGNF@
317 _GL_FUNCDECL_SYS (copysignf, float, (float x, float y));
318 # endif
319 _GL_CXXALIAS_SYS (copysignf, float, (float x, float y));
320 _GL_CXXALIASWARN (copysignf);
321 #elif defined GNULIB_POSIXCHECK
322 # undef copysignf
323 # if HAVE_RAW_DECL_COPYSIGNF
324 _GL_WARN_ON_USE (copysignf, "copysignf is unportable - "
325                  "use gnulib module copysignf for portability");
326 # endif
327 #endif
328
329 #if @GNULIB_COPYSIGN@
330 # if !@HAVE_COPYSIGN@
331 _GL_FUNCDECL_SYS (copysign, double, (double x, double y));
332 # endif
333 _GL_CXXALIAS_SYS (copysign, double, (double x, double y));
334 _GL_CXXALIASWARN (copysign);
335 #elif defined GNULIB_POSIXCHECK
336 # undef copysign
337 # if HAVE_RAW_DECL_COPYSIGN
338 _GL_WARN_ON_USE (copysign, "copysign is unportable - "
339                  "use gnulib module copysign for portability");
340 # endif
341 #endif
342
343 #if @GNULIB_COPYSIGNL@
344 # if !@HAVE_COPYSIGNL@
345 _GL_FUNCDECL_SYS (copysignl, long double, (long double x, long double y));
346 # endif
347 _GL_CXXALIAS_SYS (copysignl, long double, (long double x, long double y));
348 _GL_CXXALIASWARN (copysignl);
349 #elif defined GNULIB_POSIXCHECK
350 # undef copysignl
351 # if HAVE_RAW_DECL_COPYSIGNL
352 _GL_WARN_ON_USE (copysign, "copysignl is unportable - "
353                  "use gnulib module copysignl for portability");
354 # endif
355 #endif
356
357
358 #if @GNULIB_COSF@
359 # if !@HAVE_COSF@
360 #  undef cosf
361 _GL_FUNCDECL_SYS (cosf, float, (float x));
362 # endif
363 _GL_CXXALIAS_SYS (cosf, float, (float x));
364 _GL_CXXALIASWARN (cosf);
365 #elif defined GNULIB_POSIXCHECK
366 # undef cosf
367 # if HAVE_RAW_DECL_COSF
368 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
369                  "use gnulib module cosf for portability");
370 # endif
371 #endif
372
373 #if @GNULIB_COSL@
374 # if !@HAVE_COSL@ || !@HAVE_DECL_COSL@
375 _GL_FUNCDECL_SYS (cosl, long double, (long double x));
376 # endif
377 _GL_CXXALIAS_SYS (cosl, long double, (long double x));
378 _GL_CXXALIASWARN (cosl);
379 #elif defined GNULIB_POSIXCHECK
380 # undef cosl
381 # if HAVE_RAW_DECL_COSL
382 _GL_WARN_ON_USE (cosl, "cosl is unportable - "
383                  "use gnulib module mathl for portability");
384 # endif
385 #endif
386
387
388 #if @GNULIB_COSHF@
389 # if !@HAVE_COSHF@
390 #  undef coshf
391 _GL_FUNCDECL_SYS (coshf, float, (float x));
392 # endif
393 _GL_CXXALIAS_SYS (coshf, float, (float x));
394 _GL_CXXALIASWARN (coshf);
395 #elif defined GNULIB_POSIXCHECK
396 # undef coshf
397 # if HAVE_RAW_DECL_COSHF
398 _GL_WARN_ON_USE (coshf, "coshf is unportable - "
399                  "use gnulib module coshf for portability");
400 # endif
401 #endif
402
403
404 #if @GNULIB_EXPF@
405 # if !@HAVE_EXPF@
406 #  undef expf
407 _GL_FUNCDECL_SYS (expf, float, (float x));
408 # endif
409 _GL_CXXALIAS_SYS (expf, float, (float x));
410 _GL_CXXALIASWARN (expf);
411 #elif defined GNULIB_POSIXCHECK
412 # undef expf
413 # if HAVE_RAW_DECL_EXPF
414 _GL_WARN_ON_USE (expf, "expf is unportable - "
415                  "use gnulib module expf for portability");
416 # endif
417 #endif
418
419 #if @GNULIB_EXPL@
420 # if !@HAVE_EXPL@ || !@HAVE_DECL_EXPL@
421 _GL_FUNCDECL_SYS (expl, long double, (long double x));
422 # endif
423 _GL_CXXALIAS_SYS (expl, long double, (long double x));
424 _GL_CXXALIASWARN (expl);
425 #elif defined GNULIB_POSIXCHECK
426 # undef expl
427 # if HAVE_RAW_DECL_EXPL
428 _GL_WARN_ON_USE (expl, "expl is unportable - "
429                  "use gnulib module mathl for portability");
430 # endif
431 #endif
432
433
434 #if @GNULIB_FABSF@
435 # if !@HAVE_FABSF@
436 #  undef fabsf
437 _GL_FUNCDECL_SYS (fabsf, float, (float x));
438 # endif
439 _GL_CXXALIAS_SYS (fabsf, float, (float x));
440 _GL_CXXALIASWARN (fabsf);
441 #elif defined GNULIB_POSIXCHECK
442 # undef fabsf
443 # if HAVE_RAW_DECL_FABSF
444 _GL_WARN_ON_USE (fabsf, "fabsf is unportable - "
445                  "use gnulib module fabsf for portability");
446 # endif
447 #endif
448
449
450 #if @GNULIB_FLOORF@
451 # if @REPLACE_FLOORF@
452 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
453 #   undef floorf
454 #   define floorf rpl_floorf
455 #  endif
456 _GL_FUNCDECL_RPL (floorf, float, (float x));
457 _GL_CXXALIAS_RPL (floorf, float, (float x));
458 # else
459 #  if !@HAVE_DECL_FLOORF@
460 _GL_FUNCDECL_SYS (floorf, float, (float x));
461 #  endif
462 _GL_CXXALIAS_SYS (floorf, float, (float x));
463 # endif
464 _GL_CXXALIASWARN (floorf);
465 #elif defined GNULIB_POSIXCHECK
466 # undef floorf
467 # if HAVE_RAW_DECL_FLOORF
468 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
469                  "use gnulib module floorf for portability");
470 # endif
471 #endif
472
473 #if @GNULIB_FLOOR@
474 # if @REPLACE_FLOOR@
475 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
476 #   define floor rpl_floor
477 #  endif
478 _GL_FUNCDECL_RPL (floor, double, (double x));
479 _GL_CXXALIAS_RPL (floor, double, (double x));
480 # else
481 _GL_CXXALIAS_SYS (floor, double, (double x));
482 # endif
483 _GL_CXXALIASWARN (floor);
484 #endif
485
486 #if @GNULIB_FLOORL@
487 # if @REPLACE_FLOORL@
488 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
489 #   undef floorl
490 #   define floorl rpl_floorl
491 #  endif
492 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
493 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
494 # else
495 #  if !@HAVE_DECL_FLOORL@
496 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
497 #  endif
498 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
499 # endif
500 _GL_CXXALIASWARN (floorl);
501 #elif defined GNULIB_POSIXCHECK
502 # undef floorl
503 # if HAVE_RAW_DECL_FLOORL
504 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
505                  "use gnulib module floorl for portability");
506 # endif
507 #endif
508
509
510 #if @GNULIB_FMAF@
511 # if @REPLACE_FMAF@
512 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
513 #   undef fmaf
514 #   define fmaf rpl_fmaf
515 #  endif
516 _GL_FUNCDECL_RPL (fmaf, float, (float x, float y, float z));
517 _GL_CXXALIAS_RPL (fmaf, float, (float x, float y, float z));
518 # else
519 #  if !@HAVE_FMAF@
520 _GL_FUNCDECL_SYS (fmaf, float, (float x, float y, float z));
521 #  endif
522 _GL_CXXALIAS_SYS (fmaf, float, (float x, float y, float z));
523 # endif
524 _GL_CXXALIASWARN (fmaf);
525 #elif defined GNULIB_POSIXCHECK
526 # undef fmaf
527 # if HAVE_RAW_DECL_FMAF
528 _GL_WARN_ON_USE (fmaf, "fmaf is unportable - "
529                  "use gnulib module fmaf for portability");
530 # endif
531 #endif
532
533 #if @GNULIB_FMA@
534 # if @REPLACE_FMA@
535 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
536 #   undef fma
537 #   define fma rpl_fma
538 #  endif
539 _GL_FUNCDECL_RPL (fma, double, (double x, double y, double z));
540 _GL_CXXALIAS_RPL (fma, double, (double x, double y, double z));
541 # else
542 #  if !@HAVE_FMA@
543 _GL_FUNCDECL_SYS (fma, double, (double x, double y, double z));
544 #  endif
545 _GL_CXXALIAS_SYS (fma, double, (double x, double y, double z));
546 # endif
547 _GL_CXXALIASWARN (fma);
548 #elif defined GNULIB_POSIXCHECK
549 # undef fma
550 # if HAVE_RAW_DECL_FMA
551 _GL_WARN_ON_USE (fma, "fma is unportable - "
552                  "use gnulib module fma for portability");
553 # endif
554 #endif
555
556 #if @GNULIB_FMAL@
557 # if @REPLACE_FMAL@
558 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
559 #   undef fmal
560 #   define fmal rpl_fmal
561 #  endif
562 _GL_FUNCDECL_RPL (fmal, long double,
563                   (long double x, long double y, long double z));
564 _GL_CXXALIAS_RPL (fmal, long double,
565                   (long double x, long double y, long double z));
566 # else
567 #  if !@HAVE_FMAL@
568 _GL_FUNCDECL_SYS (fmal, long double,
569                   (long double x, long double y, long double z));
570 #  endif
571 _GL_CXXALIAS_SYS (fmal, long double,
572                   (long double x, long double y, long double z));
573 # endif
574 _GL_CXXALIASWARN (fmal);
575 #elif defined GNULIB_POSIXCHECK
576 # undef fmal
577 # if HAVE_RAW_DECL_FMAL
578 _GL_WARN_ON_USE (fmal, "fmal is unportable - "
579                  "use gnulib module fmal for portability");
580 # endif
581 #endif
582
583
584 #if @GNULIB_FMODF@
585 # if !@HAVE_FMODF@
586 #  undef fmodf
587 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
588 # endif
589 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
590 _GL_CXXALIASWARN (fmodf);
591 #elif defined GNULIB_POSIXCHECK
592 # undef fmodf
593 # if HAVE_RAW_DECL_FMODF
594 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
595                  "use gnulib module fmodf for portability");
596 # endif
597 #endif
598
599
600 /* Write x as
601      x = mantissa * 2^exp
602    where
603      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
604      If x is zero: mantissa = x, exp = 0.
605      If x is infinite or NaN: mantissa = x, exp unspecified.
606    Store exp in *EXPPTR and return mantissa.  */
607 #if @GNULIB_FREXPF@
608 # if @REPLACE_FREXPF@
609 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
610 #   undef frexpf
611 #   define frexpf rpl_frexpf
612 #  endif
613 _GL_FUNCDECL_RPL (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
614 _GL_CXXALIAS_RPL (frexpf, float, (float x, int *expptr));
615 # else
616 #  if !@HAVE_FREXPF@
617 #   undef frexpf
618 _GL_FUNCDECL_SYS (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
619 #  endif
620 _GL_CXXALIAS_SYS (frexpf, float, (float x, int *expptr));
621 # endif
622 _GL_CXXALIASWARN (frexpf);
623 #elif defined GNULIB_POSIXCHECK
624 # undef frexpf
625 # if HAVE_RAW_DECL_FREXPF
626 _GL_WARN_ON_USE (frexpf, "frexpf is unportable - "
627                  "use gnulib module frexpf for portability");
628 # endif
629 #endif
630
631 /* Write x as
632      x = mantissa * 2^exp
633    where
634      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
635      If x is zero: mantissa = x, exp = 0.
636      If x is infinite or NaN: mantissa = x, exp unspecified.
637    Store exp in *EXPPTR and return mantissa.  */
638 #if @GNULIB_FREXP@
639 # if @REPLACE_FREXP@
640 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
641 #   define frexp rpl_frexp
642 #  endif
643 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
644 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
645 # else
646 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
647 # endif
648 _GL_CXXALIASWARN (frexp);
649 #elif defined GNULIB_POSIXCHECK
650 # undef frexp
651 /* Assume frexp is always declared.  */
652 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
653                  "use gnulib module frexp for portability");
654 #endif
655
656 /* Write x as
657      x = mantissa * 2^exp
658    where
659      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
660      If x is zero: mantissa = x, exp = 0.
661      If x is infinite or NaN: mantissa = x, exp unspecified.
662    Store exp in *EXPPTR and return mantissa.  */
663 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
664 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
665 #  undef frexpl
666 #  define frexpl rpl_frexpl
667 # endif
668 _GL_FUNCDECL_RPL (frexpl, long double,
669                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
670 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
671 #else
672 # if !@HAVE_DECL_FREXPL@
673 _GL_FUNCDECL_SYS (frexpl, long double,
674                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
675 # endif
676 # if @GNULIB_FREXPL@
677 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
678 # endif
679 #endif
680 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
681 _GL_CXXALIASWARN (frexpl);
682 #endif
683 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
684 # undef frexpl
685 # if HAVE_RAW_DECL_FREXPL
686 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
687                  "use gnulib module frexpl for portability");
688 # endif
689 #endif
690
691
692 /* Return x * 2^exp.  */
693 #if @GNULIB_LDEXPF@
694 # if !@HAVE_LDEXPF@
695 #  undef ldexpf
696 _GL_FUNCDECL_SYS (ldexpf, float, (float x, int exp));
697 # endif
698 _GL_CXXALIAS_SYS (ldexpf, float, (float x, int exp));
699 _GL_CXXALIASWARN (ldexpf);
700 #elif defined GNULIB_POSIXCHECK
701 # undef ldexpf
702 # if HAVE_RAW_DECL_LDEXPF
703 _GL_WARN_ON_USE (ldexpf, "ldexpf is unportable - "
704                  "use gnulib module ldexpf for portability");
705 # endif
706 #endif
707
708 /* Return x * 2^exp.  */
709 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
710 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
711 #  undef ldexpl
712 #  define ldexpl rpl_ldexpl
713 # endif
714 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
715 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
716 #else
717 # if !@HAVE_DECL_LDEXPL@
718 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
719 # endif
720 # if @GNULIB_LDEXPL@
721 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
722 # endif
723 #endif
724 #if @GNULIB_LDEXPL@
725 _GL_CXXALIASWARN (ldexpl);
726 #endif
727 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
728 # undef ldexpl
729 # if HAVE_RAW_DECL_LDEXPL
730 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
731                  "use gnulib module ldexpl for portability");
732 # endif
733 #endif
734
735
736 #if @GNULIB_LOGB@
737 # if !@HAVE_DECL_LOGB@
738 _GL_EXTERN_C double logb (double x);
739 # endif
740 #elif defined GNULIB_POSIXCHECK
741 # undef logb
742 # if HAVE_RAW_DECL_LOGB
743 _GL_WARN_ON_USE (logb, "logb is unportable - "
744                  "use gnulib module logb for portability");
745 # endif
746 #endif
747
748
749 #if @GNULIB_LOGF@
750 # if !@HAVE_LOGF@
751 #  undef logf
752 _GL_FUNCDECL_SYS (logf, float, (float x));
753 # endif
754 _GL_CXXALIAS_SYS (logf, float, (float x));
755 _GL_CXXALIASWARN (logf);
756 #elif defined GNULIB_POSIXCHECK
757 # undef logf
758 # if HAVE_RAW_DECL_LOGF
759 _GL_WARN_ON_USE (logf, "logf is unportable - "
760                  "use gnulib module logf for portability");
761 # endif
762 #endif
763
764 #if @GNULIB_LOGL@
765 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
766 _GL_FUNCDECL_SYS (logl, long double, (long double x));
767 # endif
768 _GL_CXXALIAS_SYS (logl, long double, (long double x));
769 _GL_CXXALIASWARN (logl);
770 #elif defined GNULIB_POSIXCHECK
771 # undef logl
772 # if HAVE_RAW_DECL_LOGL
773 _GL_WARN_ON_USE (logl, "logl is unportable - "
774                  "use gnulib module mathl for portability");
775 # endif
776 #endif
777
778
779 #if @GNULIB_LOG10F@
780 # if !@HAVE_LOG10F@
781 #  undef log10f
782 _GL_FUNCDECL_SYS (log10f, float, (float x));
783 # endif
784 _GL_CXXALIAS_SYS (log10f, float, (float x));
785 _GL_CXXALIASWARN (log10f);
786 #elif defined GNULIB_POSIXCHECK
787 # undef log10f
788 # if HAVE_RAW_DECL_LOG10F
789 _GL_WARN_ON_USE (log10f, "log10f is unportable - "
790                  "use gnulib module log10f for portability");
791 # endif
792 #endif
793
794
795 #if @GNULIB_MODFF@
796 # if !@HAVE_MODFF@
797 #  undef modff
798 _GL_FUNCDECL_SYS (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
799 # endif
800 _GL_CXXALIAS_SYS (modff, float, (float x, float *iptr));
801 _GL_CXXALIASWARN (modff);
802 #elif defined GNULIB_POSIXCHECK
803 # undef modff
804 # if HAVE_RAW_DECL_MODFF
805 _GL_WARN_ON_USE (modff, "modff is unportable - "
806                  "use gnulib module modff for portability");
807 # endif
808 #endif
809
810
811 #if @GNULIB_POWF@
812 # if !@HAVE_POWF@
813 #  undef powf
814 _GL_FUNCDECL_SYS (powf, float, (float x, float y));
815 # endif
816 _GL_CXXALIAS_SYS (powf, float, (float x, float y));
817 _GL_CXXALIASWARN (powf);
818 #elif defined GNULIB_POSIXCHECK
819 # undef powf
820 # if HAVE_RAW_DECL_POWF
821 _GL_WARN_ON_USE (powf, "powf is unportable - "
822                  "use gnulib module powf for portability");
823 # endif
824 #endif
825
826
827 #if @GNULIB_RINTF@
828 # if !@HAVE_RINTF@
829 _GL_FUNCDECL_SYS (rintf, float, (float x));
830 # endif
831 _GL_CXXALIAS_SYS (rintf, float, (float x));
832 _GL_CXXALIASWARN (rintf);
833 #elif defined GNULIB_POSIXCHECK
834 # undef rintf
835 # if HAVE_RAW_DECL_RINTF
836 _GL_WARN_ON_USE (rintf, "rintf is unportable - "
837                  "use gnulib module rintf for portability");
838 # endif
839 #endif
840
841 #if @GNULIB_RINT@
842 # if !@HAVE_RINT@
843 _GL_FUNCDECL_SYS (rint, double, (double x));
844 # endif
845 _GL_CXXALIAS_SYS (rint, double, (double x));
846 _GL_CXXALIASWARN (rint);
847 #elif defined GNULIB_POSIXCHECK
848 # undef rint
849 # if HAVE_RAW_DECL_RINT
850 _GL_WARN_ON_USE (rint, "rint is unportable - "
851                  "use gnulib module rint for portability");
852 # endif
853 #endif
854
855 #if @GNULIB_RINTL@
856 # if !@HAVE_RINTL@
857 _GL_FUNCDECL_SYS (rintl, long double, (long double x));
858 # endif
859 _GL_CXXALIAS_SYS (rintl, long double, (long double x));
860 _GL_CXXALIASWARN (rintl);
861 #elif defined GNULIB_POSIXCHECK
862 # undef rintl
863 # if HAVE_RAW_DECL_RINTL
864 _GL_WARN_ON_USE (rintl, "rintl is unportable - "
865                  "use gnulib module rintl for portability");
866 # endif
867 #endif
868
869
870 #if @GNULIB_ROUNDF@
871 # if @REPLACE_ROUNDF@
872 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
873 #   undef roundf
874 #   define roundf rpl_roundf
875 #  endif
876 _GL_FUNCDECL_RPL (roundf, float, (float x));
877 _GL_CXXALIAS_RPL (roundf, float, (float x));
878 # else
879 #  if !@HAVE_DECL_ROUNDF@
880 _GL_FUNCDECL_SYS (roundf, float, (float x));
881 #  endif
882 _GL_CXXALIAS_SYS (roundf, float, (float x));
883 # endif
884 _GL_CXXALIASWARN (roundf);
885 #elif defined GNULIB_POSIXCHECK
886 # undef roundf
887 # if HAVE_RAW_DECL_ROUNDF
888 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
889                  "use gnulib module roundf for portability");
890 # endif
891 #endif
892
893 #if @GNULIB_ROUND@
894 # if @REPLACE_ROUND@
895 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
896 #   undef round
897 #   define round rpl_round
898 #  endif
899 _GL_FUNCDECL_RPL (round, double, (double x));
900 _GL_CXXALIAS_RPL (round, double, (double x));
901 # else
902 #  if !@HAVE_DECL_ROUND@
903 _GL_FUNCDECL_SYS (round, double, (double x));
904 #  endif
905 _GL_CXXALIAS_SYS (round, double, (double x));
906 # endif
907 _GL_CXXALIASWARN (round);
908 #elif defined GNULIB_POSIXCHECK
909 # undef round
910 # if HAVE_RAW_DECL_ROUND
911 _GL_WARN_ON_USE (round, "round is unportable - "
912                  "use gnulib module round for portability");
913 # endif
914 #endif
915
916 #if @GNULIB_ROUNDL@
917 # if @REPLACE_ROUNDL@
918 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
919 #   undef roundl
920 #   define roundl rpl_roundl
921 #  endif
922 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
923 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
924 # else
925 #  if !@HAVE_DECL_ROUNDL@
926 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
927 #  endif
928 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
929 # endif
930 _GL_CXXALIASWARN (roundl);
931 #elif defined GNULIB_POSIXCHECK
932 # undef roundl
933 # if HAVE_RAW_DECL_ROUNDL
934 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
935                  "use gnulib module roundl for portability");
936 # endif
937 #endif
938
939
940 #if @GNULIB_SINF@
941 # if !@HAVE_SINF@
942 #  undef sinf
943 _GL_FUNCDECL_SYS (sinf, float, (float x));
944 # endif
945 _GL_CXXALIAS_SYS (sinf, float, (float x));
946 _GL_CXXALIASWARN (sinf);
947 #elif defined GNULIB_POSIXCHECK
948 # undef sinf
949 # if HAVE_RAW_DECL_SINF
950 _GL_WARN_ON_USE (sinf, "sinf is unportable - "
951                  "use gnulib module sinf for portability");
952 # endif
953 #endif
954
955 #if @GNULIB_SINL@
956 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
957 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
958 # endif
959 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
960 _GL_CXXALIASWARN (sinl);
961 #elif defined GNULIB_POSIXCHECK
962 # undef sinl
963 # if HAVE_RAW_DECL_SINL
964 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
965                  "use gnulib module mathl for portability");
966 # endif
967 #endif
968
969
970 #if @GNULIB_SINHF@
971 # if !@HAVE_SINHF@
972 #  undef sinhf
973 _GL_FUNCDECL_SYS (sinhf, float, (float x));
974 # endif
975 _GL_CXXALIAS_SYS (sinhf, float, (float x));
976 _GL_CXXALIASWARN (sinhf);
977 #elif defined GNULIB_POSIXCHECK
978 # undef sinhf
979 # if HAVE_RAW_DECL_SINHF
980 _GL_WARN_ON_USE (sinhf, "sinhf is unportable - "
981                  "use gnulib module sinhf for portability");
982 # endif
983 #endif
984
985
986 #if @GNULIB_SQRTF@
987 # if !@HAVE_SQRTF@
988 #  undef sqrtf
989 _GL_FUNCDECL_SYS (sqrtf, float, (float x));
990 # endif
991 _GL_CXXALIAS_SYS (sqrtf, float, (float x));
992 _GL_CXXALIASWARN (sqrtf);
993 #elif defined GNULIB_POSIXCHECK
994 # undef sqrtf
995 # if HAVE_RAW_DECL_SQRTF
996 _GL_WARN_ON_USE (sqrtf, "sqrtf is unportable - "
997                  "use gnulib module sqrtf for portability");
998 # endif
999 #endif
1000
1001 #if @GNULIB_SQRTL@
1002 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
1003 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
1004 # endif
1005 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
1006 _GL_CXXALIASWARN (sqrtl);
1007 #elif defined GNULIB_POSIXCHECK
1008 # undef sqrtl
1009 # if HAVE_RAW_DECL_SQRTL
1010 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
1011                  "use gnulib module mathl for portability");
1012 # endif
1013 #endif
1014
1015
1016 #if @GNULIB_TANF@
1017 # if !@HAVE_TANF@
1018 #  undef tanf
1019 _GL_FUNCDECL_SYS (tanf, float, (float x));
1020 # endif
1021 _GL_CXXALIAS_SYS (tanf, float, (float x));
1022 _GL_CXXALIASWARN (tanf);
1023 #elif defined GNULIB_POSIXCHECK
1024 # undef tanf
1025 # if HAVE_RAW_DECL_TANF
1026 _GL_WARN_ON_USE (tanf, "tanf is unportable - "
1027                  "use gnulib module tanf for portability");
1028 # endif
1029 #endif
1030
1031 #if @GNULIB_TANL@
1032 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
1033 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
1034 # endif
1035 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
1036 _GL_CXXALIASWARN (tanl);
1037 #elif defined GNULIB_POSIXCHECK
1038 # undef tanl
1039 # if HAVE_RAW_DECL_TANL
1040 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
1041                  "use gnulib module mathl for portability");
1042 # endif
1043 #endif
1044
1045
1046 #if @GNULIB_TANHF@
1047 # if !@HAVE_TANHF@
1048 #  undef tanhf
1049 _GL_FUNCDECL_SYS (tanhf, float, (float x));
1050 # endif
1051 _GL_CXXALIAS_SYS (tanhf, float, (float x));
1052 _GL_CXXALIASWARN (tanhf);
1053 #elif defined GNULIB_POSIXCHECK
1054 # undef tanhf
1055 # if HAVE_RAW_DECL_TANHF
1056 _GL_WARN_ON_USE (tanhf, "tanhf is unportable - "
1057                  "use gnulib module tanhf for portability");
1058 # endif
1059 #endif
1060
1061
1062 #if @GNULIB_TRUNCF@
1063 # if @REPLACE_TRUNCF@
1064 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1065 #   define truncf rpl_truncf
1066 #  endif
1067 _GL_FUNCDECL_RPL (truncf, float, (float x));
1068 _GL_CXXALIAS_RPL (truncf, float, (float x));
1069 # else
1070 #  if !@HAVE_DECL_TRUNCF@
1071 _GL_FUNCDECL_SYS (truncf, float, (float x));
1072 #  endif
1073 _GL_CXXALIAS_SYS (truncf, float, (float x));
1074 # endif
1075 _GL_CXXALIASWARN (truncf);
1076 #elif defined GNULIB_POSIXCHECK
1077 # undef truncf
1078 # if HAVE_RAW_DECL_TRUNCF
1079 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
1080                  "use gnulib module truncf for portability");
1081 # endif
1082 #endif
1083
1084 #if @GNULIB_TRUNC@
1085 # if @REPLACE_TRUNC@
1086 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1087 #   define trunc rpl_trunc
1088 #  endif
1089 _GL_FUNCDECL_RPL (trunc, double, (double x));
1090 _GL_CXXALIAS_RPL (trunc, double, (double x));
1091 # else
1092 #  if !@HAVE_DECL_TRUNC@
1093 _GL_FUNCDECL_SYS (trunc, double, (double x));
1094 #  endif
1095 _GL_CXXALIAS_SYS (trunc, double, (double x));
1096 # endif
1097 _GL_CXXALIASWARN (trunc);
1098 #elif defined GNULIB_POSIXCHECK
1099 # undef trunc
1100 # if HAVE_RAW_DECL_TRUNC
1101 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
1102                  "use gnulib module trunc for portability");
1103 # endif
1104 #endif
1105
1106 #if @GNULIB_TRUNCL@
1107 # if @REPLACE_TRUNCL@
1108 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1109 #   undef truncl
1110 #   define truncl rpl_truncl
1111 #  endif
1112 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
1113 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
1114 # else
1115 #  if !@HAVE_DECL_TRUNCL@
1116 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
1117 #  endif
1118 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
1119 # endif
1120 _GL_CXXALIASWARN (truncl);
1121 #elif defined GNULIB_POSIXCHECK
1122 # undef truncl
1123 # if HAVE_RAW_DECL_TRUNCL
1124 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
1125                  "use gnulib module truncl for portability");
1126 # endif
1127 #endif
1128
1129
1130 /* Definitions of function-like macros come here, after the function
1131    declarations.  */
1132
1133
1134 #if @GNULIB_ISFINITE@
1135 # if @REPLACE_ISFINITE@
1136 _GL_EXTERN_C int gl_isfinitef (float x);
1137 _GL_EXTERN_C int gl_isfinited (double x);
1138 _GL_EXTERN_C int gl_isfinitel (long double x);
1139 #  undef isfinite
1140 #  define isfinite(x) \
1141    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
1142     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
1143     gl_isfinitef (x))
1144 # endif
1145 # ifdef __cplusplus
1146 #  ifdef isfinite
1147 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isfinite)
1148 #   undef isfinite
1149 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isfinite)
1150 #  endif
1151 # endif
1152 #elif defined GNULIB_POSIXCHECK
1153 # if defined isfinite
1154 _GL_WARN_REAL_FLOATING_DECL (isfinite);
1155 #  undef isfinite
1156 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
1157 # endif
1158 #endif
1159
1160
1161 #if @GNULIB_ISINF@
1162 # if @REPLACE_ISINF@
1163 _GL_EXTERN_C int gl_isinff (float x);
1164 _GL_EXTERN_C int gl_isinfd (double x);
1165 _GL_EXTERN_C int gl_isinfl (long double x);
1166 #  undef isinf
1167 #  define isinf(x) \
1168    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
1169     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
1170     gl_isinff (x))
1171 # endif
1172 # ifdef __cplusplus
1173 #  ifdef isinf
1174 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isinf)
1175 #   undef isinf
1176 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isinf)
1177 #  endif
1178 # endif
1179 #elif defined GNULIB_POSIXCHECK
1180 # if defined isinf
1181 _GL_WARN_REAL_FLOATING_DECL (isinf);
1182 #  undef isinf
1183 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
1184 # endif
1185 #endif
1186
1187
1188 #if @GNULIB_ISNANF@
1189 /* Test for NaN for 'float' numbers.  */
1190 # if @HAVE_ISNANF@
1191 /* The original <math.h> included above provides a declaration of isnan macro
1192    or (older) isnanf function.  */
1193 #  if __GNUC__ >= 4
1194     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1195 #   undef isnanf
1196 #   define isnanf(x) __builtin_isnanf ((float)(x))
1197 #  elif defined isnan
1198 #   undef isnanf
1199 #   define isnanf(x) isnan ((float)(x))
1200 #  endif
1201 # else
1202 /* Test whether X is a NaN.  */
1203 #  undef isnanf
1204 #  define isnanf rpl_isnanf
1205 _GL_EXTERN_C int isnanf (float x);
1206 # endif
1207 #endif
1208
1209 #if @GNULIB_ISNAND@
1210 /* Test for NaN for 'double' numbers.
1211    This function is a gnulib extension, unlike isnan() which applied only
1212    to 'double' numbers earlier but now is a type-generic macro.  */
1213 # if @HAVE_ISNAND@
1214 /* The original <math.h> included above provides a declaration of isnan
1215    macro.  */
1216 #  if __GNUC__ >= 4
1217     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1218 #   undef isnand
1219 #   define isnand(x) __builtin_isnan ((double)(x))
1220 #  else
1221 #   undef isnand
1222 #   define isnand(x) isnan ((double)(x))
1223 #  endif
1224 # else
1225 /* Test whether X is a NaN.  */
1226 #  undef isnand
1227 #  define isnand rpl_isnand
1228 _GL_EXTERN_C int isnand (double x);
1229 # endif
1230 #endif
1231
1232 #if @GNULIB_ISNANL@
1233 /* Test for NaN for 'long double' numbers.  */
1234 # if @HAVE_ISNANL@
1235 /* The original <math.h> included above provides a declaration of isnan
1236    macro or (older) isnanl function.  */
1237 #  if __GNUC__ >= 4
1238     /* GCC 4.0 and newer provides three built-ins for isnan.  */
1239 #   undef isnanl
1240 #   define isnanl(x) __builtin_isnanl ((long double)(x))
1241 #  elif defined isnan
1242 #   undef isnanl
1243 #   define isnanl(x) isnan ((long double)(x))
1244 #  endif
1245 # else
1246 /* Test whether X is a NaN.  */
1247 #  undef isnanl
1248 #  define isnanl rpl_isnanl
1249 _GL_EXTERN_C int isnanl (long double x) _GL_ATTRIBUTE_CONST;
1250 # endif
1251 #endif
1252
1253 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
1254 #if @GNULIB_ISNAN@
1255 # if @REPLACE_ISNAN@
1256 /* We can't just use the isnanf macro (e.g.) as exposed by
1257    isnanf.h (e.g.) here, because those may end up being macros
1258    that recursively expand back to isnan.  So use the gnulib
1259    replacements for them directly. */
1260 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
1261 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
1262 #  else
1263 _GL_EXTERN_C int rpl_isnanf (float x);
1264 #   define gl_isnan_f(x) rpl_isnanf (x)
1265 #  endif
1266 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
1267 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
1268 #  else
1269 _GL_EXTERN_C int rpl_isnand (double x);
1270 #   define gl_isnan_d(x) rpl_isnand (x)
1271 #  endif
1272 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
1273 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
1274 #  else
1275 _GL_EXTERN_C int rpl_isnanl (long double x) _GL_ATTRIBUTE_CONST;
1276 #   define gl_isnan_l(x) rpl_isnanl (x)
1277 #  endif
1278 #  undef isnan
1279 #  define isnan(x) \
1280    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
1281     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
1282     gl_isnan_f (x))
1283 # elif __GNUC__ >= 4
1284 #  undef isnan
1285 #  define isnan(x) \
1286    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
1287     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
1288     __builtin_isnanf ((float)(x)))
1289 # endif
1290 # ifdef __cplusplus
1291 #  ifdef isnan
1292 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (isnan)
1293 #   undef isnan
1294 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (isnan)
1295 #  endif
1296 # else
1297 /* Ensure isnan is a macro.  */
1298 #  ifndef isnan
1299 #   define isnan isnan
1300 #  endif
1301 # endif
1302 #elif defined GNULIB_POSIXCHECK
1303 # if defined isnan
1304 _GL_WARN_REAL_FLOATING_DECL (isnan);
1305 #  undef isnan
1306 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
1307 # endif
1308 #endif
1309
1310
1311 #if @GNULIB_SIGNBIT@
1312 # if @REPLACE_SIGNBIT_USING_GCC@
1313 #  undef signbit
1314    /* GCC 4.0 and newer provides three built-ins for signbit.  */
1315 #  define signbit(x) \
1316    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
1317     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
1318     __builtin_signbitf (x))
1319 # endif
1320 # if @REPLACE_SIGNBIT@
1321 #  undef signbit
1322 _GL_EXTERN_C int gl_signbitf (float arg);
1323 _GL_EXTERN_C int gl_signbitd (double arg);
1324 _GL_EXTERN_C int gl_signbitl (long double arg);
1325 #  if __GNUC__ >= 2 && !defined __STRICT_ANSI__
1326 #   define _GL_NUM_UINT_WORDS(type) \
1327       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
1328 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
1329 #    define gl_signbitf_OPTIMIZED_MACRO
1330 #    define gl_signbitf(arg) \
1331        ({ union { float _value;                                         \
1332                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
1333                 } _m;                                                   \
1334           _m._value = (arg);                                            \
1335           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
1336         })
1337 #   endif
1338 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
1339 #    define gl_signbitd_OPTIMIZED_MACRO
1340 #    define gl_signbitd(arg) \
1341        ({ union { double _value;                                        \
1342                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
1343                 } _m;                                                   \
1344           _m._value = (arg);                                            \
1345           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
1346         })
1347 #   endif
1348 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
1349 #    define gl_signbitl_OPTIMIZED_MACRO
1350 #    define gl_signbitl(arg) \
1351        ({ union { long double _value;                                   \
1352                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
1353                 } _m;                                                   \
1354           _m._value = (arg);                                            \
1355           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
1356         })
1357 #   endif
1358 #  endif
1359 #  define signbit(x) \
1360    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
1361     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
1362     gl_signbitf (x))
1363 # endif
1364 # ifdef __cplusplus
1365 #  ifdef signbit
1366 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
1367 #   undef signbit
1368 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
1369 #  endif
1370 # endif
1371 #elif defined GNULIB_POSIXCHECK
1372 # if defined signbit
1373 _GL_WARN_REAL_FLOATING_DECL (signbit);
1374 #  undef signbit
1375 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
1376 # endif
1377 #endif
1378
1379
1380 #endif /* _@GUARD_PREFIX@_MATH_H */
1381 #endif /* _@GUARD_PREFIX@_MATH_H */