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