1 /* Copyright (C) 2011-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
24 #include <math_private.h>
25 #include <math-svid-compat.h>
26 #include <libm-alias-double.h>
28 #ifndef NO_COMPAT_NEEDED
29 # define NO_COMPAT_NEEDED 0
32 #if LIBM_SVID_COMPAT && (SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_39) \
33 || defined NO_LONG_DOUBLE \
34 || defined LONG_DOUBLE_COMPAT)
36 __exp10_compat (double x
)
38 double z
= __ieee754_exp10 (x
);
39 if (__builtin_expect (!isfinite (z
) || z
== 0, 0)
40 && isfinite (x
) && _LIB_VERSION
!= _IEEE_
)
41 /* exp10 overflow (46) if x > 0, underflow (47) if x < 0. */
42 return __kernel_standard (x
, x
, 46 + !!signbit (x
));
48 libm_alias_double (__exp10_compat
, exp10
)
51 # if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_39)
52 compat_symbol (libm
, __exp10_compat
, exp10
, GLIBC_2_1
);
54 # ifdef NO_LONG_DOUBLE
55 weak_alias (__exp10_compat
, exp10l
)
57 # ifdef LONG_DOUBLE_COMPAT
58 LONG_DOUBLE_COMPAT_CHOOSE_libm_exp10l (
59 compat_symbol (libm
, __exp10_compat
, exp10l
, FIRST_VERSION_libm_exp10l
), );
63 # if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27)
64 strong_alias (__exp10_compat
, __pow10
)
65 compat_symbol (libm
, __pow10
, pow10
, GLIBC_2_1
);
67 # ifdef NO_LONG_DOUBLE
68 # if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27)
69 strong_alias (exp10l
, __pow10l
)
70 compat_symbol (libm
, __pow10l
, pow10l
, GLIBC_2_1
);