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