diff options
Diffstat (limited to 'sysdeps/x86_64/fpu/multiarch/e_powf.c')
-rw-r--r-- | sysdeps/x86_64/fpu/multiarch/e_powf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/x86_64/fpu/multiarch/e_powf.c b/sysdeps/x86_64/fpu/multiarch/e_powf.c index c110dbaffb..7e9cde08d0 100644 --- a/sysdeps/x86_64/fpu/multiarch/e_powf.c +++ b/sysdeps/x86_64/fpu/multiarch/e_powf.c @@ -16,6 +16,8 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <libm-alias-float.h> + #define powf __redirect_powf #define __DECL_SIMD___redirect_powf #include <math.h> @@ -32,8 +34,9 @@ __hidden_ver1 (__powf, __GI___powf, __redirect_powf) # include <shlib-compat.h> versioned_symbol (libm, __powf, powf, GLIBC_2_27); +libm_alias_float_other (__pow, pow) #else -weak_alias (__powf, powf) +libm_alias_float (__pow, pow) #endif strong_alias (__powf, __ieee754_powf) |