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