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