aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mips/fpu/e_sqrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mips/fpu/e_sqrtf.c')
-rw-r--r--sysdeps/mips/fpu/e_sqrtf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mips/fpu/e_sqrtf.c b/sysdeps/mips/fpu/e_sqrtf.c
index a91e330c13..dc33788bf3 100644
--- a/sysdeps/mips/fpu/e_sqrtf.c
+++ b/sysdeps/mips/fpu/e_sqrtf.c
@@ -18,7 +18,7 @@
#include <sgidefs.h>
-
+#include <libm-alias-finite.h>
#if (_MIPS_ISA >= _MIPS_ISA_MIPS2)
@@ -29,7 +29,7 @@ __ieee754_sqrtf (float x)
__asm__ ("sqrt.s %0,%1" : "=f" (z) : "f" (x));
return z;
}
-strong_alias (__ieee754_sqrtf, __sqrtf_finite)
+libm_alias_finite (__ieee754_sqrtf, __sqrtf)
#else