f82d03c2fd66b696debaf585c48c9ac997095da0
[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_FLOORF@
286 # if @REPLACE_FLOORF@
287 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
288 #   undef floorf
289 #   define floorf rpl_floorf
290 #  endif
291 _GL_FUNCDECL_RPL (floorf, float, (float x));
292 _GL_CXXALIAS_RPL (floorf, float, (float x));
293 # else
294 #  if !@HAVE_DECL_FLOORF@
295 _GL_FUNCDECL_SYS (floorf, float, (float x));
296 #  endif
297 _GL_CXXALIAS_SYS (floorf, float, (float x));
298 # endif
299 _GL_CXXALIASWARN (floorf);
300 #elif defined GNULIB_POSIXCHECK
301 # undef floorf
302 # if HAVE_RAW_DECL_FLOORF
303 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
304                  "use gnulib module floorf for portability");
305 # endif
306 #endif
307
308 #if @GNULIB_FLOOR@
309 # if @REPLACE_FLOOR@
310 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
311 #   define floor rpl_floor
312 #  endif
313 _GL_FUNCDECL_RPL (floor, double, (double x));
314 _GL_CXXALIAS_RPL (floor, double, (double x));
315 # else
316 _GL_CXXALIAS_SYS (floor, double, (double x));
317 # endif
318 _GL_CXXALIASWARN (floor);
319 #endif
320
321 #if @GNULIB_FLOORL@
322 # if @REPLACE_FLOORL@
323 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
324 #   undef floorl
325 #   define floorl rpl_floorl
326 #  endif
327 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
328 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
329 # else
330 #  if !@HAVE_DECL_FLOORL@
331 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
332 #  endif
333 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
334 # endif
335 _GL_CXXALIASWARN (floorl);
336 #elif defined GNULIB_POSIXCHECK
337 # undef floorl
338 # if HAVE_RAW_DECL_FLOORL
339 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
340                  "use gnulib module floorl for portability");
341 # endif
342 #endif
343
344
345 /* Write x as
346      x = mantissa * 2^exp
347    where
348      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
349      If x is zero: mantissa = x, exp = 0.
350      If x is infinite or NaN: mantissa = x, exp unspecified.
351    Store exp in *EXPPTR and return mantissa.  */
352 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
353 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
354 #  undef frexpl
355 #  define frexpl rpl_frexpl
356 # endif
357 _GL_FUNCDECL_RPL (frexpl, long double,
358                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
359 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
360 #else
361 # if !@HAVE_DECL_FREXPL@
362 _GL_FUNCDECL_SYS (frexpl, long double,
363                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
364 # endif
365 # if @GNULIB_FREXPL@
366 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
367 # endif
368 #endif
369 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
370 _GL_CXXALIASWARN (frexpl);
371 #endif
372 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
373 # undef frexpl
374 # if HAVE_RAW_DECL_FREXPL
375 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
376                  "use gnulib module frexpl for portability");
377 # endif
378 #endif
379
380
381 /* Return x * 2^exp.  */
382 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
383 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
384 #  undef ldexpl
385 #  define ldexpl rpl_ldexpl
386 # endif
387 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
388 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
389 #else
390 # if !@HAVE_DECL_LDEXPL@
391 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
392 # endif
393 # if @GNULIB_LDEXPL@
394 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
395 # endif
396 #endif
397 #if @GNULIB_LDEXPL@
398 _GL_CXXALIASWARN (ldexpl);
399 #endif
400 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
401 # undef ldexpl
402 # if HAVE_RAW_DECL_LDEXPL
403 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
404                  "use gnulib module ldexpl for portability");
405 # endif
406 #endif
407
408
409 #if @GNULIB_LOGL@
410 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
411 _GL_FUNCDECL_SYS (logl, long double, (long double x));
412 # endif
413 _GL_CXXALIAS_SYS (logl, long double, (long double x));
414 _GL_CXXALIASWARN (logl);
415 #elif defined GNULIB_POSIXCHECK
416 # undef logl
417 # if HAVE_RAW_DECL_LOGL
418 _GL_WARN_ON_USE (logl, "logl is unportable - "
419                  "use gnulib module mathl for portability");
420 # endif
421 #endif
422
423
424 #if @GNULIB_ROUNDF@
425 # if @REPLACE_ROUNDF@
426 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
427 #   undef roundf
428 #   define roundf rpl_roundf
429 #  endif
430 _GL_FUNCDECL_RPL (roundf, float, (float x));
431 _GL_CXXALIAS_RPL (roundf, float, (float x));
432 # else
433 #  if !@HAVE_DECL_ROUNDF@
434 _GL_FUNCDECL_SYS (roundf, float, (float x));
435 #  endif
436 _GL_CXXALIAS_SYS (roundf, float, (float x));
437 # endif
438 _GL_CXXALIASWARN (roundf);
439 #elif defined GNULIB_POSIXCHECK
440 # undef roundf
441 # if HAVE_RAW_DECL_ROUNDF
442 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
443                  "use gnulib module roundf for portability");
444 # endif
445 #endif
446
447 #if @GNULIB_ROUND@
448 # if @REPLACE_ROUND@
449 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
450 #   undef round
451 #   define round rpl_round
452 #  endif
453 _GL_FUNCDECL_RPL (round, double, (double x));
454 _GL_CXXALIAS_RPL (round, double, (double x));
455 # else
456 #  if !@HAVE_DECL_ROUND@
457 _GL_FUNCDECL_SYS (round, double, (double x));
458 #  endif
459 _GL_CXXALIAS_SYS (round, double, (double x));
460 # endif
461 _GL_CXXALIASWARN (round);
462 #elif defined GNULIB_POSIXCHECK
463 # undef round
464 # if HAVE_RAW_DECL_ROUND
465 _GL_WARN_ON_USE (round, "round is unportable - "
466                  "use gnulib module round for portability");
467 # endif
468 #endif
469
470 #if @GNULIB_ROUNDL@
471 # if @REPLACE_ROUNDL@
472 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
473 #   undef roundl
474 #   define roundl rpl_roundl
475 #  endif
476 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
477 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
478 # else
479 #  if !@HAVE_DECL_ROUNDL@
480 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
481 #  endif
482 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
483 # endif
484 _GL_CXXALIASWARN (roundl);
485 #elif defined GNULIB_POSIXCHECK
486 # undef roundl
487 # if HAVE_RAW_DECL_ROUNDL
488 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
489                  "use gnulib module roundl for portability");
490 # endif
491 #endif
492
493
494 #if @GNULIB_SINL@
495 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
496 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
497 # endif
498 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
499 _GL_CXXALIASWARN (sinl);
500 #elif defined GNULIB_POSIXCHECK
501 # undef sinl
502 # if HAVE_RAW_DECL_SINL
503 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
504                  "use gnulib module mathl for portability");
505 # endif
506 #endif
507
508
509 #if @GNULIB_SQRTL@
510 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
511 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
512 # endif
513 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
514 _GL_CXXALIASWARN (sqrtl);
515 #elif defined GNULIB_POSIXCHECK
516 # undef sqrtl
517 # if HAVE_RAW_DECL_SQRTL
518 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
519                  "use gnulib module mathl for portability");
520 # endif
521 #endif
522
523
524 #if @GNULIB_TANL@
525 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
526 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
527 # endif
528 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
529 _GL_CXXALIASWARN (tanl);
530 #elif defined GNULIB_POSIXCHECK
531 # undef tanl
532 # if HAVE_RAW_DECL_TANL
533 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
534                  "use gnulib module mathl for portability");
535 # endif
536 #endif
537
538
539 #if @GNULIB_TRUNCF@
540 # if @REPLACE_TRUNCF@
541 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
542 #   define truncf rpl_truncf
543 #  endif
544 _GL_FUNCDECL_RPL (truncf, float, (float x));
545 _GL_CXXALIAS_RPL (truncf, float, (float x));
546 # else
547 #  if !@HAVE_DECL_TRUNCF@
548 _GL_FUNCDECL_SYS (truncf, float, (float x));
549 #  endif
550 _GL_CXXALIAS_SYS (truncf, float, (float x));
551 # endif
552 _GL_CXXALIASWARN (truncf);
553 #elif defined GNULIB_POSIXCHECK
554 # undef truncf
555 # if HAVE_RAW_DECL_TRUNCF
556 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
557                  "use gnulib module truncf for portability");
558 # endif
559 #endif
560
561 #if @GNULIB_TRUNC@
562 # if @REPLACE_TRUNC@
563 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
564 #   define trunc rpl_trunc
565 #  endif
566 _GL_FUNCDECL_RPL (trunc, double, (double x));
567 _GL_CXXALIAS_RPL (trunc, double, (double x));
568 # else
569 #  if !@HAVE_DECL_TRUNC@
570 _GL_FUNCDECL_SYS (trunc, double, (double x));
571 #  endif
572 _GL_CXXALIAS_SYS (trunc, double, (double x));
573 # endif
574 _GL_CXXALIASWARN (trunc);
575 #elif defined GNULIB_POSIXCHECK
576 # undef trunc
577 # if HAVE_RAW_DECL_TRUNC
578 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
579                  "use gnulib module trunc for portability");
580 # endif
581 #endif
582
583 #if @GNULIB_TRUNCL@
584 # if @REPLACE_TRUNCL@
585 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
586 #   undef truncl
587 #   define truncl rpl_truncl
588 #  endif
589 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
590 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
591 # else
592 #  if !@HAVE_DECL_TRUNCL@
593 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
594 #  endif
595 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
596 # endif
597 _GL_CXXALIASWARN (truncl);
598 #elif defined GNULIB_POSIXCHECK
599 # undef truncl
600 # if HAVE_RAW_DECL_TRUNCL
601 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
602                  "use gnulib module truncl for portability");
603 # endif
604 #endif
605
606
607 #if @GNULIB_ISFINITE@
608 # if @REPLACE_ISFINITE@
609 _GL_EXTERN_C int gl_isfinitef (float x);
610 _GL_EXTERN_C int gl_isfinited (double x);
611 _GL_EXTERN_C int gl_isfinitel (long double x);
612 #  undef isfinite
613 #  define isfinite(x) \
614    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
615     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
616     gl_isfinitef (x))
617 # endif
618 #elif defined GNULIB_POSIXCHECK
619 # if defined isfinite
620 _GL_WARN_REAL_FLOATING_DECL (isfinite);
621 #  undef isfinite
622 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
623 # endif
624 #endif
625
626
627 #if @GNULIB_ISINF@
628 # if @REPLACE_ISINF@
629 _GL_EXTERN_C int gl_isinff (float x);
630 _GL_EXTERN_C int gl_isinfd (double x);
631 _GL_EXTERN_C int gl_isinfl (long double x);
632 #  undef isinf
633 #  define isinf(x) \
634    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
635     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
636     gl_isinff (x))
637 # endif
638 #elif defined GNULIB_POSIXCHECK
639 # if defined isinf
640 _GL_WARN_REAL_FLOATING_DECL (isinf);
641 #  undef isinf
642 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
643 # endif
644 #endif
645
646
647 #if @GNULIB_ISNANF@
648 /* Test for NaN for 'float' numbers.  */
649 # if @HAVE_ISNANF@
650 /* The original <math.h> included above provides a declaration of isnan macro
651    or (older) isnanf function.  */
652 #  if __GNUC__ >= 4
653     /* GCC 4.0 and newer provides three built-ins for isnan.  */
654 #   undef isnanf
655 #   define isnanf(x) __builtin_isnanf ((float)(x))
656 #  elif defined isnan
657 #   undef isnanf
658 #   define isnanf(x) isnan ((float)(x))
659 #  endif
660 # else
661 /* Test whether X is a NaN.  */
662 #  undef isnanf
663 #  define isnanf rpl_isnanf
664 _GL_EXTERN_C int isnanf (float x);
665 # endif
666 #endif
667
668 #if @GNULIB_ISNAND@
669 /* Test for NaN for 'double' numbers.
670    This function is a gnulib extension, unlike isnan() which applied only
671    to 'double' numbers earlier but now is a type-generic macro.  */
672 # if @HAVE_ISNAND@
673 /* The original <math.h> included above provides a declaration of isnan
674    macro.  */
675 #  if __GNUC__ >= 4
676     /* GCC 4.0 and newer provides three built-ins for isnan.  */
677 #   undef isnand
678 #   define isnand(x) __builtin_isnan ((double)(x))
679 #  else
680 #   undef isnand
681 #   define isnand(x) isnan ((double)(x))
682 #  endif
683 # else
684 /* Test whether X is a NaN.  */
685 #  undef isnand
686 #  define isnand rpl_isnand
687 _GL_EXTERN_C int isnand (double x);
688 # endif
689 #endif
690
691 #if @GNULIB_ISNANL@
692 /* Test for NaN for 'long double' numbers.  */
693 # if @HAVE_ISNANL@
694 /* The original <math.h> included above provides a declaration of isnan
695    macro or (older) isnanl function.  */
696 #  if __GNUC__ >= 4
697     /* GCC 4.0 and newer provides three built-ins for isnan.  */
698 #   undef isnanl
699 #   define isnanl(x) __builtin_isnanl ((long double)(x))
700 #  elif defined isnan
701 #   undef isnanl
702 #   define isnanl(x) isnan ((long double)(x))
703 #  endif
704 # else
705 /* Test whether X is a NaN.  */
706 #  undef isnanl
707 #  define isnanl rpl_isnanl
708 _GL_EXTERN_C int isnanl (long double x);
709 # endif
710 #endif
711
712 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
713 #if @GNULIB_ISNAN@
714 # if @REPLACE_ISNAN@
715 /* We can't just use the isnanf macro (e.g.) as exposed by
716    isnanf.h (e.g.) here, because those may end up being macros
717    that recursively expand back to isnan.  So use the gnulib
718    replacements for them directly. */
719 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
720 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
721 #  else
722 _GL_EXTERN_C int rpl_isnanf (float x);
723 #   define gl_isnan_f(x) rpl_isnanf (x)
724 #  endif
725 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
726 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
727 #  else
728 _GL_EXTERN_C int rpl_isnand (double x);
729 #   define gl_isnan_d(x) rpl_isnand (x)
730 #  endif
731 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
732 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
733 #  else
734 _GL_EXTERN_C int rpl_isnanl (long double x);
735 #   define gl_isnan_l(x) rpl_isnanl (x)
736 #  endif
737 #  undef isnan
738 #  define isnan(x) \
739    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
740     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
741     gl_isnan_f (x))
742 # elif __GNUC__ >= 4
743 #  undef isnan
744 #  define isnan(x) \
745    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
746     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
747     __builtin_isnanf ((float)(x)))
748 # endif
749 /* Ensure isnan is a macro.  */
750 # ifndef isnan
751 #  define isnan isnan
752 # endif
753 #elif defined GNULIB_POSIXCHECK
754 # if defined isnan
755 _GL_WARN_REAL_FLOATING_DECL (isnan);
756 #  undef isnan
757 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
758 # endif
759 #endif
760
761
762 #if @GNULIB_SIGNBIT@
763 # if @REPLACE_SIGNBIT_USING_GCC@
764 #  undef signbit
765    /* GCC 4.0 and newer provides three built-ins for signbit.  */
766 #  define signbit(x) \
767    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
768     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
769     __builtin_signbitf (x))
770 # endif
771 # if @REPLACE_SIGNBIT@
772 #  undef signbit
773 _GL_EXTERN_C int gl_signbitf (float arg);
774 _GL_EXTERN_C int gl_signbitd (double arg);
775 _GL_EXTERN_C int gl_signbitl (long double arg);
776 #  if __GNUC__ >= 2 && !__STRICT_ANSI__
777 #   define _GL_NUM_UINT_WORDS(type) \
778       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
779 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
780 #    define gl_signbitf_OPTIMIZED_MACRO
781 #    define gl_signbitf(arg) \
782        ({ union { float _value;                                         \
783                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
784                 } _m;                                                   \
785           _m._value = (arg);                                            \
786           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
787         })
788 #   endif
789 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
790 #    define gl_signbitd_OPTIMIZED_MACRO
791 #    define gl_signbitd(arg) \
792        ({ union { double _value;                                        \
793                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
794                 } _m;                                                   \
795           _m._value = (arg);                                            \
796           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
797         })
798 #   endif
799 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
800 #    define gl_signbitl_OPTIMIZED_MACRO
801 #    define gl_signbitl(arg) \
802        ({ union { long double _value;                                   \
803                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
804                 } _m;                                                   \
805           _m._value = (arg);                                            \
806           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
807         })
808 #   endif
809 #  endif
810 #  define signbit(x) \
811    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
812     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
813     gl_signbitf (x))
814 # endif
815 #elif defined GNULIB_POSIXCHECK
816 # if defined signbit
817 _GL_WARN_REAL_FLOATING_DECL (signbit);
818 #  undef signbit
819 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
820 # endif
821 #endif
822
823
824 #endif /* _@GUARD_PREFIX@_MATH_H */
825 #endif /* _@GUARD_PREFIX@_MATH_H */