New module 'fabsf'.
[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 /* Write x as
112      x = mantissa * 2^exp
113    where
114      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
115      If x is zero: mantissa = x, exp = 0.
116      If x is infinite or NaN: mantissa = x, exp unspecified.
117    Store exp in *EXPPTR and return mantissa.  */
118 #if @GNULIB_FREXP@
119 # if @REPLACE_FREXP@
120 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
121 #   define frexp rpl_frexp
122 #  endif
123 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
124 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
125 # else
126 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
127 # endif
128 _GL_CXXALIASWARN (frexp);
129 #elif defined GNULIB_POSIXCHECK
130 # undef frexp
131 /* Assume frexp is always declared.  */
132 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
133                  "use gnulib module frexp for portability");
134 #endif
135
136
137 #if @GNULIB_LOGB@
138 # if !@HAVE_DECL_LOGB@
139 _GL_EXTERN_C double logb (double x);
140 # endif
141 #elif defined GNULIB_POSIXCHECK
142 # undef logb
143 # if HAVE_RAW_DECL_LOGB
144 _GL_WARN_ON_USE (logb, "logb is unportable - "
145                  "use gnulib module logb for portability");
146 # endif
147 #endif
148
149
150 #if @GNULIB_ACOSL@
151 # if !@HAVE_ACOSL@ || !@HAVE_DECL_ACOSL@
152 _GL_FUNCDECL_SYS (acosl, long double, (long double x));
153 # endif
154 _GL_CXXALIAS_SYS (acosl, long double, (long double x));
155 _GL_CXXALIASWARN (acosl);
156 #elif defined GNULIB_POSIXCHECK
157 # undef acosl
158 # if HAVE_RAW_DECL_ACOSL
159 _GL_WARN_ON_USE (acosl, "acosl is unportable - "
160                  "use gnulib module mathl for portability");
161 # endif
162 #endif
163
164
165 #if @GNULIB_ASINL@
166 # if !@HAVE_ASINL@ || !@HAVE_DECL_ASINL@
167 _GL_FUNCDECL_SYS (asinl, long double, (long double x));
168 # endif
169 _GL_CXXALIAS_SYS (asinl, long double, (long double x));
170 _GL_CXXALIASWARN (asinl);
171 #elif defined GNULIB_POSIXCHECK
172 # undef asinl
173 # if HAVE_RAW_DECL_ASINL
174 _GL_WARN_ON_USE (asinl, "asinl is unportable - "
175                  "use gnulib module mathl for portability");
176 # endif
177 #endif
178
179
180 #if @GNULIB_ATANL@
181 # if !@HAVE_ATANL@ || !@HAVE_DECL_ATANL@
182 _GL_FUNCDECL_SYS (atanl, long double, (long double x));
183 # endif
184 _GL_CXXALIAS_SYS (atanl, long double, (long double x));
185 _GL_CXXALIASWARN (atanl);
186 #elif defined GNULIB_POSIXCHECK
187 # undef atanl
188 # if HAVE_RAW_DECL_ATANL
189 _GL_WARN_ON_USE (atanl, "atanl is unportable - "
190                  "use gnulib module mathl for portability");
191 # endif
192 #endif
193
194
195 #if @GNULIB_CEILF@
196 # if @REPLACE_CEILF@
197 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
198 #   undef ceilf
199 #   define ceilf rpl_ceilf
200 #  endif
201 _GL_FUNCDECL_RPL (ceilf, float, (float x));
202 _GL_CXXALIAS_RPL (ceilf, float, (float x));
203 # else
204 #  if !@HAVE_DECL_CEILF@
205 _GL_FUNCDECL_SYS (ceilf, float, (float x));
206 #  endif
207 _GL_CXXALIAS_SYS (ceilf, float, (float x));
208 # endif
209 _GL_CXXALIASWARN (ceilf);
210 #elif defined GNULIB_POSIXCHECK
211 # undef ceilf
212 # if HAVE_RAW_DECL_CEILF
213 _GL_WARN_ON_USE (ceilf, "ceilf is unportable - "
214                  "use gnulib module ceilf for portability");
215 # endif
216 #endif
217
218 #if @GNULIB_CEIL@
219 # if @REPLACE_CEIL@
220 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
221 #   define ceil rpl_ceil
222 #  endif
223 _GL_FUNCDECL_RPL (ceil, double, (double x));
224 _GL_CXXALIAS_RPL (ceil, double, (double x));
225 # else
226 _GL_CXXALIAS_SYS (ceil, double, (double x));
227 # endif
228 _GL_CXXALIASWARN (ceil);
229 #endif
230
231 #if @GNULIB_CEILL@
232 # if @REPLACE_CEILL@
233 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
234 #   undef ceill
235 #   define ceill rpl_ceill
236 #  endif
237 _GL_FUNCDECL_RPL (ceill, long double, (long double x));
238 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
239 # else
240 #  if !@HAVE_DECL_CEILL@
241 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
242 #  endif
243 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
244 # endif
245 _GL_CXXALIASWARN (ceill);
246 #elif defined GNULIB_POSIXCHECK
247 # undef ceill
248 # if HAVE_RAW_DECL_CEILL
249 _GL_WARN_ON_USE (ceill, "ceill is unportable - "
250                  "use gnulib module ceill for portability");
251 # endif
252 #endif
253
254
255 #if @GNULIB_COSL@
256 # if !@HAVE_COSL@ || !@HAVE_DECL_COSL@
257 _GL_FUNCDECL_SYS (cosl, long double, (long double x));
258 # endif
259 _GL_CXXALIAS_SYS (cosl, long double, (long double x));
260 _GL_CXXALIASWARN (cosl);
261 #elif defined GNULIB_POSIXCHECK
262 # undef cosl
263 # if HAVE_RAW_DECL_COSL
264 _GL_WARN_ON_USE (cosl, "cosl is unportable - "
265                  "use gnulib module mathl for portability");
266 # endif
267 #endif
268
269
270 #if @GNULIB_EXPL@
271 # if !@HAVE_EXPL@ || !@HAVE_DECL_EXPL@
272 _GL_FUNCDECL_SYS (expl, long double, (long double x));
273 # endif
274 _GL_CXXALIAS_SYS (expl, long double, (long double x));
275 _GL_CXXALIASWARN (expl);
276 #elif defined GNULIB_POSIXCHECK
277 # undef expl
278 # if HAVE_RAW_DECL_EXPL
279 _GL_WARN_ON_USE (expl, "expl is unportable - "
280                  "use gnulib module mathl for portability");
281 # endif
282 #endif
283
284
285 #if @GNULIB_FABSF@
286 # if !@HAVE_FABSF@
287 #  undef fabsf
288 _GL_FUNCDECL_SYS (fabsf, float, (float x));
289 # endif
290 _GL_CXXALIAS_SYS (fabsf, float, (float x));
291 _GL_CXXALIASWARN (fabsf);
292 #elif defined GNULIB_POSIXCHECK
293 # undef fabsf
294 # if HAVE_RAW_DECL_FABSF
295 _GL_WARN_ON_USE (fabsf, "fabsf is unportable - "
296                  "use gnulib module fabsf for portability");
297 # endif
298 #endif
299
300
301 #if @GNULIB_FLOORF@
302 # if @REPLACE_FLOORF@
303 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
304 #   undef floorf
305 #   define floorf rpl_floorf
306 #  endif
307 _GL_FUNCDECL_RPL (floorf, float, (float x));
308 _GL_CXXALIAS_RPL (floorf, float, (float x));
309 # else
310 #  if !@HAVE_DECL_FLOORF@
311 _GL_FUNCDECL_SYS (floorf, float, (float x));
312 #  endif
313 _GL_CXXALIAS_SYS (floorf, float, (float x));
314 # endif
315 _GL_CXXALIASWARN (floorf);
316 #elif defined GNULIB_POSIXCHECK
317 # undef floorf
318 # if HAVE_RAW_DECL_FLOORF
319 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
320                  "use gnulib module floorf for portability");
321 # endif
322 #endif
323
324 #if @GNULIB_FLOOR@
325 # if @REPLACE_FLOOR@
326 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
327 #   define floor rpl_floor
328 #  endif
329 _GL_FUNCDECL_RPL (floor, double, (double x));
330 _GL_CXXALIAS_RPL (floor, double, (double x));
331 # else
332 _GL_CXXALIAS_SYS (floor, double, (double x));
333 # endif
334 _GL_CXXALIASWARN (floor);
335 #endif
336
337 #if @GNULIB_FLOORL@
338 # if @REPLACE_FLOORL@
339 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
340 #   undef floorl
341 #   define floorl rpl_floorl
342 #  endif
343 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
344 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
345 # else
346 #  if !@HAVE_DECL_FLOORL@
347 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
348 #  endif
349 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
350 # endif
351 _GL_CXXALIASWARN (floorl);
352 #elif defined GNULIB_POSIXCHECK
353 # undef floorl
354 # if HAVE_RAW_DECL_FLOORL
355 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
356                  "use gnulib module floorl for portability");
357 # endif
358 #endif
359
360
361 /* Write x as
362      x = mantissa * 2^exp
363    where
364      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
365      If x is zero: mantissa = x, exp = 0.
366      If x is infinite or NaN: mantissa = x, exp unspecified.
367    Store exp in *EXPPTR and return mantissa.  */
368 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
369 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
370 #  undef frexpl
371 #  define frexpl rpl_frexpl
372 # endif
373 _GL_FUNCDECL_RPL (frexpl, long double,
374                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
375 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
376 #else
377 # if !@HAVE_DECL_FREXPL@
378 _GL_FUNCDECL_SYS (frexpl, long double,
379                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
380 # endif
381 # if @GNULIB_FREXPL@
382 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
383 # endif
384 #endif
385 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
386 _GL_CXXALIASWARN (frexpl);
387 #endif
388 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
389 # undef frexpl
390 # if HAVE_RAW_DECL_FREXPL
391 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
392                  "use gnulib module frexpl for portability");
393 # endif
394 #endif
395
396
397 /* Return x * 2^exp.  */
398 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
399 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
400 #  undef ldexpl
401 #  define ldexpl rpl_ldexpl
402 # endif
403 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
404 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
405 #else
406 # if !@HAVE_DECL_LDEXPL@
407 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
408 # endif
409 # if @GNULIB_LDEXPL@
410 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
411 # endif
412 #endif
413 #if @GNULIB_LDEXPL@
414 _GL_CXXALIASWARN (ldexpl);
415 #endif
416 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
417 # undef ldexpl
418 # if HAVE_RAW_DECL_LDEXPL
419 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
420                  "use gnulib module ldexpl for portability");
421 # endif
422 #endif
423
424
425 #if @GNULIB_LOGL@
426 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
427 _GL_FUNCDECL_SYS (logl, long double, (long double x));
428 # endif
429 _GL_CXXALIAS_SYS (logl, long double, (long double x));
430 _GL_CXXALIASWARN (logl);
431 #elif defined GNULIB_POSIXCHECK
432 # undef logl
433 # if HAVE_RAW_DECL_LOGL
434 _GL_WARN_ON_USE (logl, "logl is unportable - "
435                  "use gnulib module mathl for portability");
436 # endif
437 #endif
438
439
440 #if @GNULIB_ROUNDF@
441 # if @REPLACE_ROUNDF@
442 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
443 #   undef roundf
444 #   define roundf rpl_roundf
445 #  endif
446 _GL_FUNCDECL_RPL (roundf, float, (float x));
447 _GL_CXXALIAS_RPL (roundf, float, (float x));
448 # else
449 #  if !@HAVE_DECL_ROUNDF@
450 _GL_FUNCDECL_SYS (roundf, float, (float x));
451 #  endif
452 _GL_CXXALIAS_SYS (roundf, float, (float x));
453 # endif
454 _GL_CXXALIASWARN (roundf);
455 #elif defined GNULIB_POSIXCHECK
456 # undef roundf
457 # if HAVE_RAW_DECL_ROUNDF
458 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
459                  "use gnulib module roundf for portability");
460 # endif
461 #endif
462
463 #if @GNULIB_ROUND@
464 # if @REPLACE_ROUND@
465 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
466 #   undef round
467 #   define round rpl_round
468 #  endif
469 _GL_FUNCDECL_RPL (round, double, (double x));
470 _GL_CXXALIAS_RPL (round, double, (double x));
471 # else
472 #  if !@HAVE_DECL_ROUND@
473 _GL_FUNCDECL_SYS (round, double, (double x));
474 #  endif
475 _GL_CXXALIAS_SYS (round, double, (double x));
476 # endif
477 _GL_CXXALIASWARN (round);
478 #elif defined GNULIB_POSIXCHECK
479 # undef round
480 # if HAVE_RAW_DECL_ROUND
481 _GL_WARN_ON_USE (round, "round is unportable - "
482                  "use gnulib module round for portability");
483 # endif
484 #endif
485
486 #if @GNULIB_ROUNDL@
487 # if @REPLACE_ROUNDL@
488 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
489 #   undef roundl
490 #   define roundl rpl_roundl
491 #  endif
492 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
493 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
494 # else
495 #  if !@HAVE_DECL_ROUNDL@
496 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
497 #  endif
498 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
499 # endif
500 _GL_CXXALIASWARN (roundl);
501 #elif defined GNULIB_POSIXCHECK
502 # undef roundl
503 # if HAVE_RAW_DECL_ROUNDL
504 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
505                  "use gnulib module roundl for portability");
506 # endif
507 #endif
508
509
510 #if @GNULIB_SINL@
511 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
512 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
513 # endif
514 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
515 _GL_CXXALIASWARN (sinl);
516 #elif defined GNULIB_POSIXCHECK
517 # undef sinl
518 # if HAVE_RAW_DECL_SINL
519 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
520                  "use gnulib module mathl for portability");
521 # endif
522 #endif
523
524
525 #if @GNULIB_SQRTL@
526 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
527 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
528 # endif
529 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
530 _GL_CXXALIASWARN (sqrtl);
531 #elif defined GNULIB_POSIXCHECK
532 # undef sqrtl
533 # if HAVE_RAW_DECL_SQRTL
534 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
535                  "use gnulib module mathl for portability");
536 # endif
537 #endif
538
539
540 #if @GNULIB_TANL@
541 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
542 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
543 # endif
544 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
545 _GL_CXXALIASWARN (tanl);
546 #elif defined GNULIB_POSIXCHECK
547 # undef tanl
548 # if HAVE_RAW_DECL_TANL
549 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
550                  "use gnulib module mathl for portability");
551 # endif
552 #endif
553
554
555 #if @GNULIB_TRUNCF@
556 # if @REPLACE_TRUNCF@
557 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
558 #   define truncf rpl_truncf
559 #  endif
560 _GL_FUNCDECL_RPL (truncf, float, (float x));
561 _GL_CXXALIAS_RPL (truncf, float, (float x));
562 # else
563 #  if !@HAVE_DECL_TRUNCF@
564 _GL_FUNCDECL_SYS (truncf, float, (float x));
565 #  endif
566 _GL_CXXALIAS_SYS (truncf, float, (float x));
567 # endif
568 _GL_CXXALIASWARN (truncf);
569 #elif defined GNULIB_POSIXCHECK
570 # undef truncf
571 # if HAVE_RAW_DECL_TRUNCF
572 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
573                  "use gnulib module truncf for portability");
574 # endif
575 #endif
576
577 #if @GNULIB_TRUNC@
578 # if @REPLACE_TRUNC@
579 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
580 #   define trunc rpl_trunc
581 #  endif
582 _GL_FUNCDECL_RPL (trunc, double, (double x));
583 _GL_CXXALIAS_RPL (trunc, double, (double x));
584 # else
585 #  if !@HAVE_DECL_TRUNC@
586 _GL_FUNCDECL_SYS (trunc, double, (double x));
587 #  endif
588 _GL_CXXALIAS_SYS (trunc, double, (double x));
589 # endif
590 _GL_CXXALIASWARN (trunc);
591 #elif defined GNULIB_POSIXCHECK
592 # undef trunc
593 # if HAVE_RAW_DECL_TRUNC
594 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
595                  "use gnulib module trunc for portability");
596 # endif
597 #endif
598
599 #if @GNULIB_TRUNCL@
600 # if @REPLACE_TRUNCL@
601 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
602 #   undef truncl
603 #   define truncl rpl_truncl
604 #  endif
605 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
606 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
607 # else
608 #  if !@HAVE_DECL_TRUNCL@
609 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
610 #  endif
611 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
612 # endif
613 _GL_CXXALIASWARN (truncl);
614 #elif defined GNULIB_POSIXCHECK
615 # undef truncl
616 # if HAVE_RAW_DECL_TRUNCL
617 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
618                  "use gnulib module truncl for portability");
619 # endif
620 #endif
621
622
623 #if @GNULIB_ISFINITE@
624 # if @REPLACE_ISFINITE@
625 _GL_EXTERN_C int gl_isfinitef (float x);
626 _GL_EXTERN_C int gl_isfinited (double x);
627 _GL_EXTERN_C int gl_isfinitel (long double x);
628 #  undef isfinite
629 #  define isfinite(x) \
630    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
631     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
632     gl_isfinitef (x))
633 # endif
634 #elif defined GNULIB_POSIXCHECK
635 # if defined isfinite
636 _GL_WARN_REAL_FLOATING_DECL (isfinite);
637 #  undef isfinite
638 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
639 # endif
640 #endif
641
642
643 #if @GNULIB_ISINF@
644 # if @REPLACE_ISINF@
645 _GL_EXTERN_C int gl_isinff (float x);
646 _GL_EXTERN_C int gl_isinfd (double x);
647 _GL_EXTERN_C int gl_isinfl (long double x);
648 #  undef isinf
649 #  define isinf(x) \
650    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
651     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
652     gl_isinff (x))
653 # endif
654 #elif defined GNULIB_POSIXCHECK
655 # if defined isinf
656 _GL_WARN_REAL_FLOATING_DECL (isinf);
657 #  undef isinf
658 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
659 # endif
660 #endif
661
662
663 #if @GNULIB_ISNANF@
664 /* Test for NaN for 'float' numbers.  */
665 # if @HAVE_ISNANF@
666 /* The original <math.h> included above provides a declaration of isnan macro
667    or (older) isnanf function.  */
668 #  if __GNUC__ >= 4
669     /* GCC 4.0 and newer provides three built-ins for isnan.  */
670 #   undef isnanf
671 #   define isnanf(x) __builtin_isnanf ((float)(x))
672 #  elif defined isnan
673 #   undef isnanf
674 #   define isnanf(x) isnan ((float)(x))
675 #  endif
676 # else
677 /* Test whether X is a NaN.  */
678 #  undef isnanf
679 #  define isnanf rpl_isnanf
680 _GL_EXTERN_C int isnanf (float x);
681 # endif
682 #endif
683
684 #if @GNULIB_ISNAND@
685 /* Test for NaN for 'double' numbers.
686    This function is a gnulib extension, unlike isnan() which applied only
687    to 'double' numbers earlier but now is a type-generic macro.  */
688 # if @HAVE_ISNAND@
689 /* The original <math.h> included above provides a declaration of isnan
690    macro.  */
691 #  if __GNUC__ >= 4
692     /* GCC 4.0 and newer provides three built-ins for isnan.  */
693 #   undef isnand
694 #   define isnand(x) __builtin_isnan ((double)(x))
695 #  else
696 #   undef isnand
697 #   define isnand(x) isnan ((double)(x))
698 #  endif
699 # else
700 /* Test whether X is a NaN.  */
701 #  undef isnand
702 #  define isnand rpl_isnand
703 _GL_EXTERN_C int isnand (double x);
704 # endif
705 #endif
706
707 #if @GNULIB_ISNANL@
708 /* Test for NaN for 'long double' numbers.  */
709 # if @HAVE_ISNANL@
710 /* The original <math.h> included above provides a declaration of isnan
711    macro or (older) isnanl function.  */
712 #  if __GNUC__ >= 4
713     /* GCC 4.0 and newer provides three built-ins for isnan.  */
714 #   undef isnanl
715 #   define isnanl(x) __builtin_isnanl ((long double)(x))
716 #  elif defined isnan
717 #   undef isnanl
718 #   define isnanl(x) isnan ((long double)(x))
719 #  endif
720 # else
721 /* Test whether X is a NaN.  */
722 #  undef isnanl
723 #  define isnanl rpl_isnanl
724 _GL_EXTERN_C int isnanl (long double x);
725 # endif
726 #endif
727
728 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
729 #if @GNULIB_ISNAN@
730 # if @REPLACE_ISNAN@
731 /* We can't just use the isnanf macro (e.g.) as exposed by
732    isnanf.h (e.g.) here, because those may end up being macros
733    that recursively expand back to isnan.  So use the gnulib
734    replacements for them directly. */
735 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
736 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
737 #  else
738 _GL_EXTERN_C int rpl_isnanf (float x);
739 #   define gl_isnan_f(x) rpl_isnanf (x)
740 #  endif
741 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
742 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
743 #  else
744 _GL_EXTERN_C int rpl_isnand (double x);
745 #   define gl_isnan_d(x) rpl_isnand (x)
746 #  endif
747 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
748 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
749 #  else
750 _GL_EXTERN_C int rpl_isnanl (long double x);
751 #   define gl_isnan_l(x) rpl_isnanl (x)
752 #  endif
753 #  undef isnan
754 #  define isnan(x) \
755    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
756     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
757     gl_isnan_f (x))
758 # elif __GNUC__ >= 4
759 #  undef isnan
760 #  define isnan(x) \
761    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
762     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
763     __builtin_isnanf ((float)(x)))
764 # endif
765 /* Ensure isnan is a macro.  */
766 # ifndef isnan
767 #  define isnan isnan
768 # endif
769 #elif defined GNULIB_POSIXCHECK
770 # if defined isnan
771 _GL_WARN_REAL_FLOATING_DECL (isnan);
772 #  undef isnan
773 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
774 # endif
775 #endif
776
777
778 #if @GNULIB_SIGNBIT@
779 # if @REPLACE_SIGNBIT_USING_GCC@
780 #  undef signbit
781    /* GCC 4.0 and newer provides three built-ins for signbit.  */
782 #  define signbit(x) \
783    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
784     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
785     __builtin_signbitf (x))
786 # endif
787 # if @REPLACE_SIGNBIT@
788 #  undef signbit
789 _GL_EXTERN_C int gl_signbitf (float arg);
790 _GL_EXTERN_C int gl_signbitd (double arg);
791 _GL_EXTERN_C int gl_signbitl (long double arg);
792 #  if __GNUC__ >= 2 && !__STRICT_ANSI__
793 #   define _GL_NUM_UINT_WORDS(type) \
794       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
795 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
796 #    define gl_signbitf_OPTIMIZED_MACRO
797 #    define gl_signbitf(arg) \
798        ({ union { float _value;                                         \
799                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
800                 } _m;                                                   \
801           _m._value = (arg);                                            \
802           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
803         })
804 #   endif
805 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
806 #    define gl_signbitd_OPTIMIZED_MACRO
807 #    define gl_signbitd(arg) \
808        ({ union { double _value;                                        \
809                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
810                 } _m;                                                   \
811           _m._value = (arg);                                            \
812           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
813         })
814 #   endif
815 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
816 #    define gl_signbitl_OPTIMIZED_MACRO
817 #    define gl_signbitl(arg) \
818        ({ union { long double _value;                                   \
819                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
820                 } _m;                                                   \
821           _m._value = (arg);                                            \
822           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
823         })
824 #   endif
825 #  endif
826 #  define signbit(x) \
827    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
828     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
829     gl_signbitf (x))
830 # endif
831 #elif defined GNULIB_POSIXCHECK
832 # if defined signbit
833 _GL_WARN_REAL_FLOATING_DECL (signbit);
834 #  undef signbit
835 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
836 # endif
837 #endif
838
839
840 #endif /* _@GUARD_PREFIX@_MATH_H */
841 #endif /* _@GUARD_PREFIX@_MATH_H */