New module 'acosf'.
[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 #if @GNULIB_ACOSF@
112 # if !@HAVE_ACOSF@
113 #  undef acosf
114 _GL_FUNCDECL_SYS (acosf, float, (float x));
115 # endif
116 _GL_CXXALIAS_SYS (acosf, float, (float x));
117 _GL_CXXALIASWARN (acosf);
118 #elif defined GNULIB_POSIXCHECK
119 # undef acosf
120 # if HAVE_RAW_DECL_ACOSF
121 _GL_WARN_ON_USE (acosf, "acosf is unportable - "
122                  "use gnulib module acosf for portability");
123 # endif
124 #endif
125
126 #if @GNULIB_ACOSL@
127 # if !@HAVE_ACOSL@ || !@HAVE_DECL_ACOSL@
128 _GL_FUNCDECL_SYS (acosl, long double, (long double x));
129 # endif
130 _GL_CXXALIAS_SYS (acosl, long double, (long double x));
131 _GL_CXXALIASWARN (acosl);
132 #elif defined GNULIB_POSIXCHECK
133 # undef acosl
134 # if HAVE_RAW_DECL_ACOSL
135 _GL_WARN_ON_USE (acosl, "acosl is unportable - "
136                  "use gnulib module mathl for portability");
137 # endif
138 #endif
139
140
141 #if @GNULIB_ASINF@
142 # if !@HAVE_ASINF@
143 #  undef asinf
144 _GL_FUNCDECL_SYS (asinf, float, (float x));
145 # endif
146 _GL_CXXALIAS_SYS (asinf, float, (float x));
147 _GL_CXXALIASWARN (asinf);
148 #elif defined GNULIB_POSIXCHECK
149 # undef asinf
150 # if HAVE_RAW_DECL_ASINF
151 _GL_WARN_ON_USE (asinf, "asinf is unportable - "
152                  "use gnulib module asinf for portability");
153 # endif
154 #endif
155
156 #if @GNULIB_ASINL@
157 # if !@HAVE_ASINL@ || !@HAVE_DECL_ASINL@
158 _GL_FUNCDECL_SYS (asinl, long double, (long double x));
159 # endif
160 _GL_CXXALIAS_SYS (asinl, long double, (long double x));
161 _GL_CXXALIASWARN (asinl);
162 #elif defined GNULIB_POSIXCHECK
163 # undef asinl
164 # if HAVE_RAW_DECL_ASINL
165 _GL_WARN_ON_USE (asinl, "asinl is unportable - "
166                  "use gnulib module mathl for portability");
167 # endif
168 #endif
169
170
171 #if @GNULIB_ATANL@
172 # if !@HAVE_ATANL@ || !@HAVE_DECL_ATANL@
173 _GL_FUNCDECL_SYS (atanl, long double, (long double x));
174 # endif
175 _GL_CXXALIAS_SYS (atanl, long double, (long double x));
176 _GL_CXXALIASWARN (atanl);
177 #elif defined GNULIB_POSIXCHECK
178 # undef atanl
179 # if HAVE_RAW_DECL_ATANL
180 _GL_WARN_ON_USE (atanl, "atanl is unportable - "
181                  "use gnulib module mathl for portability");
182 # endif
183 #endif
184
185
186 #if @GNULIB_CEILF@
187 # if @REPLACE_CEILF@
188 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
189 #   undef ceilf
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 #   undef ceill
226 #   define ceill rpl_ceill
227 #  endif
228 _GL_FUNCDECL_RPL (ceill, long double, (long double x));
229 _GL_CXXALIAS_RPL (ceill, long double, (long double x));
230 # else
231 #  if !@HAVE_DECL_CEILL@
232 _GL_FUNCDECL_SYS (ceill, long double, (long double x));
233 #  endif
234 _GL_CXXALIAS_SYS (ceill, long double, (long double x));
235 # endif
236 _GL_CXXALIASWARN (ceill);
237 #elif defined GNULIB_POSIXCHECK
238 # undef ceill
239 # if HAVE_RAW_DECL_CEILL
240 _GL_WARN_ON_USE (ceill, "ceill is unportable - "
241                  "use gnulib module ceill for portability");
242 # endif
243 #endif
244
245
246 #if @GNULIB_COSF@
247 # if !@HAVE_COSF@
248 #  undef cosf
249 _GL_FUNCDECL_SYS (cosf, float, (float x));
250 # endif
251 _GL_CXXALIAS_SYS (cosf, float, (float x));
252 _GL_CXXALIASWARN (cosf);
253 #elif defined GNULIB_POSIXCHECK
254 # undef cosf
255 # if HAVE_RAW_DECL_COSF
256 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
257                  "use gnulib module cosf for portability");
258 # endif
259 #endif
260
261 #if @GNULIB_COSL@
262 # if !@HAVE_COSL@ || !@HAVE_DECL_COSL@
263 _GL_FUNCDECL_SYS (cosl, long double, (long double x));
264 # endif
265 _GL_CXXALIAS_SYS (cosl, long double, (long double x));
266 _GL_CXXALIASWARN (cosl);
267 #elif defined GNULIB_POSIXCHECK
268 # undef cosl
269 # if HAVE_RAW_DECL_COSL
270 _GL_WARN_ON_USE (cosl, "cosl is unportable - "
271                  "use gnulib module mathl for portability");
272 # endif
273 #endif
274
275
276 #if @GNULIB_EXPF@
277 # if !@HAVE_EXPF@
278 #  undef expf
279 _GL_FUNCDECL_SYS (expf, float, (float x));
280 # endif
281 _GL_CXXALIAS_SYS (expf, float, (float x));
282 _GL_CXXALIASWARN (expf);
283 #elif defined GNULIB_POSIXCHECK
284 # undef expf
285 # if HAVE_RAW_DECL_EXPF
286 _GL_WARN_ON_USE (expf, "expf is unportable - "
287                  "use gnulib module expf for portability");
288 # endif
289 #endif
290
291 #if @GNULIB_EXPL@
292 # if !@HAVE_EXPL@ || !@HAVE_DECL_EXPL@
293 _GL_FUNCDECL_SYS (expl, long double, (long double x));
294 # endif
295 _GL_CXXALIAS_SYS (expl, long double, (long double x));
296 _GL_CXXALIASWARN (expl);
297 #elif defined GNULIB_POSIXCHECK
298 # undef expl
299 # if HAVE_RAW_DECL_EXPL
300 _GL_WARN_ON_USE (expl, "expl is unportable - "
301                  "use gnulib module mathl for portability");
302 # endif
303 #endif
304
305
306 #if @GNULIB_FABSF@
307 # if !@HAVE_FABSF@
308 #  undef fabsf
309 _GL_FUNCDECL_SYS (fabsf, float, (float x));
310 # endif
311 _GL_CXXALIAS_SYS (fabsf, float, (float x));
312 _GL_CXXALIASWARN (fabsf);
313 #elif defined GNULIB_POSIXCHECK
314 # undef fabsf
315 # if HAVE_RAW_DECL_FABSF
316 _GL_WARN_ON_USE (fabsf, "fabsf is unportable - "
317                  "use gnulib module fabsf for portability");
318 # endif
319 #endif
320
321
322 #if @GNULIB_FLOORF@
323 # if @REPLACE_FLOORF@
324 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
325 #   undef floorf
326 #   define floorf rpl_floorf
327 #  endif
328 _GL_FUNCDECL_RPL (floorf, float, (float x));
329 _GL_CXXALIAS_RPL (floorf, float, (float x));
330 # else
331 #  if !@HAVE_DECL_FLOORF@
332 _GL_FUNCDECL_SYS (floorf, float, (float x));
333 #  endif
334 _GL_CXXALIAS_SYS (floorf, float, (float x));
335 # endif
336 _GL_CXXALIASWARN (floorf);
337 #elif defined GNULIB_POSIXCHECK
338 # undef floorf
339 # if HAVE_RAW_DECL_FLOORF
340 _GL_WARN_ON_USE (floorf, "floorf is unportable - "
341                  "use gnulib module floorf for portability");
342 # endif
343 #endif
344
345 #if @GNULIB_FLOOR@
346 # if @REPLACE_FLOOR@
347 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
348 #   define floor rpl_floor
349 #  endif
350 _GL_FUNCDECL_RPL (floor, double, (double x));
351 _GL_CXXALIAS_RPL (floor, double, (double x));
352 # else
353 _GL_CXXALIAS_SYS (floor, double, (double x));
354 # endif
355 _GL_CXXALIASWARN (floor);
356 #endif
357
358 #if @GNULIB_FLOORL@
359 # if @REPLACE_FLOORL@
360 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
361 #   undef floorl
362 #   define floorl rpl_floorl
363 #  endif
364 _GL_FUNCDECL_RPL (floorl, long double, (long double x));
365 _GL_CXXALIAS_RPL (floorl, long double, (long double x));
366 # else
367 #  if !@HAVE_DECL_FLOORL@
368 _GL_FUNCDECL_SYS (floorl, long double, (long double x));
369 #  endif
370 _GL_CXXALIAS_SYS (floorl, long double, (long double x));
371 # endif
372 _GL_CXXALIASWARN (floorl);
373 #elif defined GNULIB_POSIXCHECK
374 # undef floorl
375 # if HAVE_RAW_DECL_FLOORL
376 _GL_WARN_ON_USE (floorl, "floorl is unportable - "
377                  "use gnulib module floorl for portability");
378 # endif
379 #endif
380
381
382 #if @GNULIB_FMODF@
383 # if !@HAVE_FMODF@
384 #  undef fmodf
385 _GL_FUNCDECL_SYS (fmodf, float, (float x, float y));
386 # endif
387 _GL_CXXALIAS_SYS (fmodf, float, (float x, float y));
388 _GL_CXXALIASWARN (fmodf);
389 #elif defined GNULIB_POSIXCHECK
390 # undef fmodf
391 # if HAVE_RAW_DECL_FMODF
392 _GL_WARN_ON_USE (fmodf, "fmodf is unportable - "
393                  "use gnulib module fmodf for portability");
394 # endif
395 #endif
396
397
398 /* Write x as
399      x = mantissa * 2^exp
400    where
401      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
402      If x is zero: mantissa = x, exp = 0.
403      If x is infinite or NaN: mantissa = x, exp unspecified.
404    Store exp in *EXPPTR and return mantissa.  */
405 #if @GNULIB_FREXPF@
406 # if @REPLACE_FREXPF@
407 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
408 #   undef frexpf
409 #   define frexpf rpl_frexpf
410 #  endif
411 _GL_FUNCDECL_RPL (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
412 _GL_CXXALIAS_RPL (frexpf, float, (float x, int *expptr));
413 # else
414 #  if !@HAVE_FREXPF@
415 #   undef frexpf
416 _GL_FUNCDECL_SYS (frexpf, float, (float x, int *expptr) _GL_ARG_NONNULL ((2)));
417 #  endif
418 _GL_CXXALIAS_SYS (frexpf, float, (float x, int *expptr));
419 # endif
420 _GL_CXXALIASWARN (frexpf);
421 #elif defined GNULIB_POSIXCHECK
422 # undef frexpf
423 # if HAVE_RAW_DECL_FREXPF
424 _GL_WARN_ON_USE (frexpf, "frexpf is unportable - "
425                  "use gnulib module frexpf for portability");
426 # endif
427 #endif
428
429 /* Write x as
430      x = mantissa * 2^exp
431    where
432      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
433      If x is zero: mantissa = x, exp = 0.
434      If x is infinite or NaN: mantissa = x, exp unspecified.
435    Store exp in *EXPPTR and return mantissa.  */
436 #if @GNULIB_FREXP@
437 # if @REPLACE_FREXP@
438 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
439 #   define frexp rpl_frexp
440 #  endif
441 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
442 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
443 # else
444 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
445 # endif
446 _GL_CXXALIASWARN (frexp);
447 #elif defined GNULIB_POSIXCHECK
448 # undef frexp
449 /* Assume frexp is always declared.  */
450 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
451                  "use gnulib module frexp for portability");
452 #endif
453
454 /* Write x as
455      x = mantissa * 2^exp
456    where
457      If x finite and nonzero: 0.5 <= |mantissa| < 1.0.
458      If x is zero: mantissa = x, exp = 0.
459      If x is infinite or NaN: mantissa = x, exp unspecified.
460    Store exp in *EXPPTR and return mantissa.  */
461 #if @GNULIB_FREXPL@ && @REPLACE_FREXPL@
462 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
463 #  undef frexpl
464 #  define frexpl rpl_frexpl
465 # endif
466 _GL_FUNCDECL_RPL (frexpl, long double,
467                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
468 _GL_CXXALIAS_RPL (frexpl, long double, (long double x, int *expptr));
469 #else
470 # if !@HAVE_DECL_FREXPL@
471 _GL_FUNCDECL_SYS (frexpl, long double,
472                   (long double x, int *expptr) _GL_ARG_NONNULL ((2)));
473 # endif
474 # if @GNULIB_FREXPL@
475 _GL_CXXALIAS_SYS (frexpl, long double, (long double x, int *expptr));
476 # endif
477 #endif
478 #if @GNULIB_FREXPL@ && !(@REPLACE_FREXPL@ && !@HAVE_DECL_FREXPL@)
479 _GL_CXXALIASWARN (frexpl);
480 #endif
481 #if !@GNULIB_FREXPL@ && defined GNULIB_POSIXCHECK
482 # undef frexpl
483 # if HAVE_RAW_DECL_FREXPL
484 _GL_WARN_ON_USE (frexpl, "frexpl is unportable - "
485                  "use gnulib module frexpl for portability");
486 # endif
487 #endif
488
489
490 /* Return x * 2^exp.  */
491 #if @GNULIB_LDEXPF@
492 # if !@HAVE_LDEXPF@
493 #  undef ldexpf
494 _GL_FUNCDECL_SYS (ldexpf, float, (float x, int exp));
495 # endif
496 _GL_CXXALIAS_SYS (ldexpf, float, (float x, int exp));
497 _GL_CXXALIASWARN (ldexpf);
498 #elif defined GNULIB_POSIXCHECK
499 # undef ldexpf
500 # if HAVE_RAW_DECL_LDEXPF
501 _GL_WARN_ON_USE (ldexpf, "ldexpf is unportable - "
502                  "use gnulib module ldexpf for portability");
503 # endif
504 #endif
505
506 /* Return x * 2^exp.  */
507 #if @GNULIB_LDEXPL@ && @REPLACE_LDEXPL@
508 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
509 #  undef ldexpl
510 #  define ldexpl rpl_ldexpl
511 # endif
512 _GL_FUNCDECL_RPL (ldexpl, long double, (long double x, int exp));
513 _GL_CXXALIAS_RPL (ldexpl, long double, (long double x, int exp));
514 #else
515 # if !@HAVE_DECL_LDEXPL@
516 _GL_FUNCDECL_SYS (ldexpl, long double, (long double x, int exp));
517 # endif
518 # if @GNULIB_LDEXPL@
519 _GL_CXXALIAS_SYS (ldexpl, long double, (long double x, int exp));
520 # endif
521 #endif
522 #if @GNULIB_LDEXPL@
523 _GL_CXXALIASWARN (ldexpl);
524 #endif
525 #if !@GNULIB_LDEXPL@ && defined GNULIB_POSIXCHECK
526 # undef ldexpl
527 # if HAVE_RAW_DECL_LDEXPL
528 _GL_WARN_ON_USE (ldexpl, "ldexpl is unportable - "
529                  "use gnulib module ldexpl for portability");
530 # endif
531 #endif
532
533
534 #if @GNULIB_LOGB@
535 # if !@HAVE_DECL_LOGB@
536 _GL_EXTERN_C double logb (double x);
537 # endif
538 #elif defined GNULIB_POSIXCHECK
539 # undef logb
540 # if HAVE_RAW_DECL_LOGB
541 _GL_WARN_ON_USE (logb, "logb is unportable - "
542                  "use gnulib module logb for portability");
543 # endif
544 #endif
545
546
547 #if @GNULIB_LOGF@
548 # if !@HAVE_LOGF@
549 #  undef logf
550 _GL_FUNCDECL_SYS (logf, float, (float x));
551 # endif
552 _GL_CXXALIAS_SYS (logf, float, (float x));
553 _GL_CXXALIASWARN (logf);
554 #elif defined GNULIB_POSIXCHECK
555 # undef logf
556 # if HAVE_RAW_DECL_LOGF
557 _GL_WARN_ON_USE (logf, "logf is unportable - "
558                  "use gnulib module logf for portability");
559 # endif
560 #endif
561
562 #if @GNULIB_LOGL@
563 # if !@HAVE_LOGL@ || !@HAVE_DECL_LOGL@
564 _GL_FUNCDECL_SYS (logl, long double, (long double x));
565 # endif
566 _GL_CXXALIAS_SYS (logl, long double, (long double x));
567 _GL_CXXALIASWARN (logl);
568 #elif defined GNULIB_POSIXCHECK
569 # undef logl
570 # if HAVE_RAW_DECL_LOGL
571 _GL_WARN_ON_USE (logl, "logl is unportable - "
572                  "use gnulib module mathl for portability");
573 # endif
574 #endif
575
576
577 #if @GNULIB_LOG10F@
578 # if !@HAVE_LOG10F@
579 #  undef log10f
580 _GL_FUNCDECL_SYS (log10f, float, (float x));
581 # endif
582 _GL_CXXALIAS_SYS (log10f, float, (float x));
583 _GL_CXXALIASWARN (log10f);
584 #elif defined GNULIB_POSIXCHECK
585 # undef log10f
586 # if HAVE_RAW_DECL_LOG10F
587 _GL_WARN_ON_USE (log10f, "log10f is unportable - "
588                  "use gnulib module log10f for portability");
589 # endif
590 #endif
591
592
593 #if @GNULIB_MODFF@
594 # if !@HAVE_MODFF@
595 #  undef modff
596 _GL_FUNCDECL_SYS (modff, float, (float x, float *iptr) _GL_ARG_NONNULL ((2)));
597 # endif
598 _GL_CXXALIAS_SYS (modff, float, (float x, float *iptr));
599 _GL_CXXALIASWARN (modff);
600 #elif defined GNULIB_POSIXCHECK
601 # undef modff
602 # if HAVE_RAW_DECL_MODFF
603 _GL_WARN_ON_USE (modff, "modff is unportable - "
604                  "use gnulib module modff for portability");
605 # endif
606 #endif
607
608
609 #if @GNULIB_POWF@
610 # if !@HAVE_POWF@
611 #  undef powf
612 _GL_FUNCDECL_SYS (powf, float, (float x, float y));
613 # endif
614 _GL_CXXALIAS_SYS (powf, float, (float x, float y));
615 _GL_CXXALIASWARN (powf);
616 #elif defined GNULIB_POSIXCHECK
617 # undef powf
618 # if HAVE_RAW_DECL_POWF
619 _GL_WARN_ON_USE (powf, "powf is unportable - "
620                  "use gnulib module powf for portability");
621 # endif
622 #endif
623
624
625 #if @GNULIB_ROUNDF@
626 # if @REPLACE_ROUNDF@
627 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
628 #   undef roundf
629 #   define roundf rpl_roundf
630 #  endif
631 _GL_FUNCDECL_RPL (roundf, float, (float x));
632 _GL_CXXALIAS_RPL (roundf, float, (float x));
633 # else
634 #  if !@HAVE_DECL_ROUNDF@
635 _GL_FUNCDECL_SYS (roundf, float, (float x));
636 #  endif
637 _GL_CXXALIAS_SYS (roundf, float, (float x));
638 # endif
639 _GL_CXXALIASWARN (roundf);
640 #elif defined GNULIB_POSIXCHECK
641 # undef roundf
642 # if HAVE_RAW_DECL_ROUNDF
643 _GL_WARN_ON_USE (roundf, "roundf is unportable - "
644                  "use gnulib module roundf for portability");
645 # endif
646 #endif
647
648 #if @GNULIB_ROUND@
649 # if @REPLACE_ROUND@
650 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
651 #   undef round
652 #   define round rpl_round
653 #  endif
654 _GL_FUNCDECL_RPL (round, double, (double x));
655 _GL_CXXALIAS_RPL (round, double, (double x));
656 # else
657 #  if !@HAVE_DECL_ROUND@
658 _GL_FUNCDECL_SYS (round, double, (double x));
659 #  endif
660 _GL_CXXALIAS_SYS (round, double, (double x));
661 # endif
662 _GL_CXXALIASWARN (round);
663 #elif defined GNULIB_POSIXCHECK
664 # undef round
665 # if HAVE_RAW_DECL_ROUND
666 _GL_WARN_ON_USE (round, "round is unportable - "
667                  "use gnulib module round for portability");
668 # endif
669 #endif
670
671 #if @GNULIB_ROUNDL@
672 # if @REPLACE_ROUNDL@
673 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
674 #   undef roundl
675 #   define roundl rpl_roundl
676 #  endif
677 _GL_FUNCDECL_RPL (roundl, long double, (long double x));
678 _GL_CXXALIAS_RPL (roundl, long double, (long double x));
679 # else
680 #  if !@HAVE_DECL_ROUNDL@
681 _GL_FUNCDECL_SYS (roundl, long double, (long double x));
682 #  endif
683 _GL_CXXALIAS_SYS (roundl, long double, (long double x));
684 # endif
685 _GL_CXXALIASWARN (roundl);
686 #elif defined GNULIB_POSIXCHECK
687 # undef roundl
688 # if HAVE_RAW_DECL_ROUNDL
689 _GL_WARN_ON_USE (roundl, "roundl is unportable - "
690                  "use gnulib module roundl for portability");
691 # endif
692 #endif
693
694
695 #if @GNULIB_SINF@
696 # if !@HAVE_SINF@
697 #  undef sinf
698 _GL_FUNCDECL_SYS (sinf, float, (float x));
699 # endif
700 _GL_CXXALIAS_SYS (sinf, float, (float x));
701 _GL_CXXALIASWARN (sinf);
702 #elif defined GNULIB_POSIXCHECK
703 # undef sinf
704 # if HAVE_RAW_DECL_SINF
705 _GL_WARN_ON_USE (sinf, "sinf is unportable - "
706                  "use gnulib module sinf for portability");
707 # endif
708 #endif
709
710 #if @GNULIB_SINL@
711 # if !@HAVE_SINL@ || !@HAVE_DECL_SINL@
712 _GL_FUNCDECL_SYS (sinl, long double, (long double x));
713 # endif
714 _GL_CXXALIAS_SYS (sinl, long double, (long double x));
715 _GL_CXXALIASWARN (sinl);
716 #elif defined GNULIB_POSIXCHECK
717 # undef sinl
718 # if HAVE_RAW_DECL_SINL
719 _GL_WARN_ON_USE (sinl, "sinl is unportable - "
720                  "use gnulib module mathl for portability");
721 # endif
722 #endif
723
724
725 #if @GNULIB_SQRTF@
726 # if !@HAVE_SQRTF@
727 #  undef sqrtf
728 _GL_FUNCDECL_SYS (sqrtf, float, (float x));
729 # endif
730 _GL_CXXALIAS_SYS (sqrtf, float, (float x));
731 _GL_CXXALIASWARN (sqrtf);
732 #elif defined GNULIB_POSIXCHECK
733 # undef sqrtf
734 # if HAVE_RAW_DECL_SQRTF
735 _GL_WARN_ON_USE (sqrtf, "sqrtf is unportable - "
736                  "use gnulib module sqrtf for portability");
737 # endif
738 #endif
739
740 #if @GNULIB_SQRTL@
741 # if !@HAVE_SQRTL@ || !@HAVE_DECL_SQRTL@
742 _GL_FUNCDECL_SYS (sqrtl, long double, (long double x));
743 # endif
744 _GL_CXXALIAS_SYS (sqrtl, long double, (long double x));
745 _GL_CXXALIASWARN (sqrtl);
746 #elif defined GNULIB_POSIXCHECK
747 # undef sqrtl
748 # if HAVE_RAW_DECL_SQRTL
749 _GL_WARN_ON_USE (sqrtl, "sqrtl is unportable - "
750                  "use gnulib module mathl for portability");
751 # endif
752 #endif
753
754
755 #if @GNULIB_TANF@
756 # if !@HAVE_TANF@
757 #  undef tanf
758 _GL_FUNCDECL_SYS (tanf, float, (float x));
759 # endif
760 _GL_CXXALIAS_SYS (tanf, float, (float x));
761 _GL_CXXALIASWARN (tanf);
762 #elif defined GNULIB_POSIXCHECK
763 # undef tanf
764 # if HAVE_RAW_DECL_TANF
765 _GL_WARN_ON_USE (tanf, "tanf is unportable - "
766                  "use gnulib module tanf for portability");
767 # endif
768 #endif
769
770 #if @GNULIB_TANL@
771 # if !@HAVE_TANL@ || !@HAVE_DECL_TANL@
772 _GL_FUNCDECL_SYS (tanl, long double, (long double x));
773 # endif
774 _GL_CXXALIAS_SYS (tanl, long double, (long double x));
775 _GL_CXXALIASWARN (tanl);
776 #elif defined GNULIB_POSIXCHECK
777 # undef tanl
778 # if HAVE_RAW_DECL_TANL
779 _GL_WARN_ON_USE (tanl, "tanl is unportable - "
780                  "use gnulib module mathl for portability");
781 # endif
782 #endif
783
784
785 #if @GNULIB_TRUNCF@
786 # if @REPLACE_TRUNCF@
787 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
788 #   define truncf rpl_truncf
789 #  endif
790 _GL_FUNCDECL_RPL (truncf, float, (float x));
791 _GL_CXXALIAS_RPL (truncf, float, (float x));
792 # else
793 #  if !@HAVE_DECL_TRUNCF@
794 _GL_FUNCDECL_SYS (truncf, float, (float x));
795 #  endif
796 _GL_CXXALIAS_SYS (truncf, float, (float x));
797 # endif
798 _GL_CXXALIASWARN (truncf);
799 #elif defined GNULIB_POSIXCHECK
800 # undef truncf
801 # if HAVE_RAW_DECL_TRUNCF
802 _GL_WARN_ON_USE (truncf, "truncf is unportable - "
803                  "use gnulib module truncf for portability");
804 # endif
805 #endif
806
807 #if @GNULIB_TRUNC@
808 # if @REPLACE_TRUNC@
809 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
810 #   define trunc rpl_trunc
811 #  endif
812 _GL_FUNCDECL_RPL (trunc, double, (double x));
813 _GL_CXXALIAS_RPL (trunc, double, (double x));
814 # else
815 #  if !@HAVE_DECL_TRUNC@
816 _GL_FUNCDECL_SYS (trunc, double, (double x));
817 #  endif
818 _GL_CXXALIAS_SYS (trunc, double, (double x));
819 # endif
820 _GL_CXXALIASWARN (trunc);
821 #elif defined GNULIB_POSIXCHECK
822 # undef trunc
823 # if HAVE_RAW_DECL_TRUNC
824 _GL_WARN_ON_USE (trunc, "trunc is unportable - "
825                  "use gnulib module trunc for portability");
826 # endif
827 #endif
828
829 #if @GNULIB_TRUNCL@
830 # if @REPLACE_TRUNCL@
831 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
832 #   undef truncl
833 #   define truncl rpl_truncl
834 #  endif
835 _GL_FUNCDECL_RPL (truncl, long double, (long double x));
836 _GL_CXXALIAS_RPL (truncl, long double, (long double x));
837 # else
838 #  if !@HAVE_DECL_TRUNCL@
839 _GL_FUNCDECL_SYS (truncl, long double, (long double x));
840 #  endif
841 _GL_CXXALIAS_SYS (truncl, long double, (long double x));
842 # endif
843 _GL_CXXALIASWARN (truncl);
844 #elif defined GNULIB_POSIXCHECK
845 # undef truncl
846 # if HAVE_RAW_DECL_TRUNCL
847 _GL_WARN_ON_USE (truncl, "truncl is unportable - "
848                  "use gnulib module truncl for portability");
849 # endif
850 #endif
851
852
853 /* Definitions of function-like macros come here, after the function
854    declarations.  */
855
856
857 #if @GNULIB_ISFINITE@
858 # if @REPLACE_ISFINITE@
859 _GL_EXTERN_C int gl_isfinitef (float x);
860 _GL_EXTERN_C int gl_isfinited (double x);
861 _GL_EXTERN_C int gl_isfinitel (long double x);
862 #  undef isfinite
863 #  define isfinite(x) \
864    (sizeof (x) == sizeof (long double) ? gl_isfinitel (x) : \
865     sizeof (x) == sizeof (double) ? gl_isfinited (x) : \
866     gl_isfinitef (x))
867 # endif
868 #elif defined GNULIB_POSIXCHECK
869 # if defined isfinite
870 _GL_WARN_REAL_FLOATING_DECL (isfinite);
871 #  undef isfinite
872 #  define isfinite(x) _GL_WARN_REAL_FLOATING_IMPL (isfinite, x)
873 # endif
874 #endif
875
876
877 #if @GNULIB_ISINF@
878 # if @REPLACE_ISINF@
879 _GL_EXTERN_C int gl_isinff (float x);
880 _GL_EXTERN_C int gl_isinfd (double x);
881 _GL_EXTERN_C int gl_isinfl (long double x);
882 #  undef isinf
883 #  define isinf(x) \
884    (sizeof (x) == sizeof (long double) ? gl_isinfl (x) : \
885     sizeof (x) == sizeof (double) ? gl_isinfd (x) : \
886     gl_isinff (x))
887 # endif
888 #elif defined GNULIB_POSIXCHECK
889 # if defined isinf
890 _GL_WARN_REAL_FLOATING_DECL (isinf);
891 #  undef isinf
892 #  define isinf(x) _GL_WARN_REAL_FLOATING_IMPL (isinf, x)
893 # endif
894 #endif
895
896
897 #if @GNULIB_ISNANF@
898 /* Test for NaN for 'float' numbers.  */
899 # if @HAVE_ISNANF@
900 /* The original <math.h> included above provides a declaration of isnan macro
901    or (older) isnanf function.  */
902 #  if __GNUC__ >= 4
903     /* GCC 4.0 and newer provides three built-ins for isnan.  */
904 #   undef isnanf
905 #   define isnanf(x) __builtin_isnanf ((float)(x))
906 #  elif defined isnan
907 #   undef isnanf
908 #   define isnanf(x) isnan ((float)(x))
909 #  endif
910 # else
911 /* Test whether X is a NaN.  */
912 #  undef isnanf
913 #  define isnanf rpl_isnanf
914 _GL_EXTERN_C int isnanf (float x);
915 # endif
916 #endif
917
918 #if @GNULIB_ISNAND@
919 /* Test for NaN for 'double' numbers.
920    This function is a gnulib extension, unlike isnan() which applied only
921    to 'double' numbers earlier but now is a type-generic macro.  */
922 # if @HAVE_ISNAND@
923 /* The original <math.h> included above provides a declaration of isnan
924    macro.  */
925 #  if __GNUC__ >= 4
926     /* GCC 4.0 and newer provides three built-ins for isnan.  */
927 #   undef isnand
928 #   define isnand(x) __builtin_isnan ((double)(x))
929 #  else
930 #   undef isnand
931 #   define isnand(x) isnan ((double)(x))
932 #  endif
933 # else
934 /* Test whether X is a NaN.  */
935 #  undef isnand
936 #  define isnand rpl_isnand
937 _GL_EXTERN_C int isnand (double x);
938 # endif
939 #endif
940
941 #if @GNULIB_ISNANL@
942 /* Test for NaN for 'long double' numbers.  */
943 # if @HAVE_ISNANL@
944 /* The original <math.h> included above provides a declaration of isnan
945    macro or (older) isnanl function.  */
946 #  if __GNUC__ >= 4
947     /* GCC 4.0 and newer provides three built-ins for isnan.  */
948 #   undef isnanl
949 #   define isnanl(x) __builtin_isnanl ((long double)(x))
950 #  elif defined isnan
951 #   undef isnanl
952 #   define isnanl(x) isnan ((long double)(x))
953 #  endif
954 # else
955 /* Test whether X is a NaN.  */
956 #  undef isnanl
957 #  define isnanl rpl_isnanl
958 _GL_EXTERN_C int isnanl (long double x);
959 # endif
960 #endif
961
962 /* This must come *after* the snippets for GNULIB_ISNANF and GNULIB_ISNANL!  */
963 #if @GNULIB_ISNAN@
964 # if @REPLACE_ISNAN@
965 /* We can't just use the isnanf macro (e.g.) as exposed by
966    isnanf.h (e.g.) here, because those may end up being macros
967    that recursively expand back to isnan.  So use the gnulib
968    replacements for them directly. */
969 #  if @HAVE_ISNANF@ && __GNUC__ >= 4
970 #   define gl_isnan_f(x) __builtin_isnanf ((float)(x))
971 #  else
972 _GL_EXTERN_C int rpl_isnanf (float x);
973 #   define gl_isnan_f(x) rpl_isnanf (x)
974 #  endif
975 #  if @HAVE_ISNAND@ && __GNUC__ >= 4
976 #   define gl_isnan_d(x) __builtin_isnan ((double)(x))
977 #  else
978 _GL_EXTERN_C int rpl_isnand (double x);
979 #   define gl_isnan_d(x) rpl_isnand (x)
980 #  endif
981 #  if @HAVE_ISNANL@ && __GNUC__ >= 4
982 #   define gl_isnan_l(x) __builtin_isnanl ((long double)(x))
983 #  else
984 _GL_EXTERN_C int rpl_isnanl (long double x);
985 #   define gl_isnan_l(x) rpl_isnanl (x)
986 #  endif
987 #  undef isnan
988 #  define isnan(x) \
989    (sizeof (x) == sizeof (long double) ? gl_isnan_l (x) : \
990     sizeof (x) == sizeof (double) ? gl_isnan_d (x) : \
991     gl_isnan_f (x))
992 # elif __GNUC__ >= 4
993 #  undef isnan
994 #  define isnan(x) \
995    (sizeof (x) == sizeof (long double) ? __builtin_isnanl ((long double)(x)) : \
996     sizeof (x) == sizeof (double) ? __builtin_isnan ((double)(x)) : \
997     __builtin_isnanf ((float)(x)))
998 # endif
999 /* Ensure isnan is a macro.  */
1000 # ifndef isnan
1001 #  define isnan isnan
1002 # endif
1003 #elif defined GNULIB_POSIXCHECK
1004 # if defined isnan
1005 _GL_WARN_REAL_FLOATING_DECL (isnan);
1006 #  undef isnan
1007 #  define isnan(x) _GL_WARN_REAL_FLOATING_IMPL (isnan, x)
1008 # endif
1009 #endif
1010
1011
1012 #if @GNULIB_SIGNBIT@
1013 # if @REPLACE_SIGNBIT_USING_GCC@
1014 #  undef signbit
1015    /* GCC 4.0 and newer provides three built-ins for signbit.  */
1016 #  define signbit(x) \
1017    (sizeof (x) == sizeof (long double) ? __builtin_signbitl (x) : \
1018     sizeof (x) == sizeof (double) ? __builtin_signbit (x) : \
1019     __builtin_signbitf (x))
1020 # endif
1021 # if @REPLACE_SIGNBIT@
1022 #  undef signbit
1023 _GL_EXTERN_C int gl_signbitf (float arg);
1024 _GL_EXTERN_C int gl_signbitd (double arg);
1025 _GL_EXTERN_C int gl_signbitl (long double arg);
1026 #  if __GNUC__ >= 2 && !__STRICT_ANSI__
1027 #   define _GL_NUM_UINT_WORDS(type) \
1028       ((sizeof (type) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
1029 #   if defined FLT_SIGNBIT_WORD && defined FLT_SIGNBIT_BIT && !defined gl_signbitf
1030 #    define gl_signbitf_OPTIMIZED_MACRO
1031 #    define gl_signbitf(arg) \
1032        ({ union { float _value;                                         \
1033                   unsigned int _word[_GL_NUM_UINT_WORDS (float)];       \
1034                 } _m;                                                   \
1035           _m._value = (arg);                                            \
1036           (_m._word[FLT_SIGNBIT_WORD] >> FLT_SIGNBIT_BIT) & 1;          \
1037         })
1038 #   endif
1039 #   if defined DBL_SIGNBIT_WORD && defined DBL_SIGNBIT_BIT && !defined gl_signbitd
1040 #    define gl_signbitd_OPTIMIZED_MACRO
1041 #    define gl_signbitd(arg) \
1042        ({ union { double _value;                                        \
1043                   unsigned int _word[_GL_NUM_UINT_WORDS (double)];      \
1044                 } _m;                                                   \
1045           _m._value = (arg);                                            \
1046           (_m._word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;          \
1047         })
1048 #   endif
1049 #   if defined LDBL_SIGNBIT_WORD && defined LDBL_SIGNBIT_BIT && !defined gl_signbitl
1050 #    define gl_signbitl_OPTIMIZED_MACRO
1051 #    define gl_signbitl(arg) \
1052        ({ union { long double _value;                                   \
1053                   unsigned int _word[_GL_NUM_UINT_WORDS (long double)]; \
1054                 } _m;                                                   \
1055           _m._value = (arg);                                            \
1056           (_m._word[LDBL_SIGNBIT_WORD] >> LDBL_SIGNBIT_BIT) & 1;        \
1057         })
1058 #   endif
1059 #  endif
1060 #  define signbit(x) \
1061    (sizeof (x) == sizeof (long double) ? gl_signbitl (x) : \
1062     sizeof (x) == sizeof (double) ? gl_signbitd (x) : \
1063     gl_signbitf (x))
1064 # endif
1065 #elif defined GNULIB_POSIXCHECK
1066 # if defined signbit
1067 _GL_WARN_REAL_FLOATING_DECL (signbit);
1068 #  undef signbit
1069 #  define signbit(x) _GL_WARN_REAL_FLOATING_IMPL (signbit, x)
1070 # endif
1071 #endif
1072
1073
1074 #endif /* _@GUARD_PREFIX@_MATH_H */
1075 #endif /* _@GUARD_PREFIX@_MATH_H */