aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mips/fpu/e_sqrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mips/fpu/e_sqrt.c')
-rw-r--r--sysdeps/mips/fpu/e_sqrt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mips/fpu/e_sqrt.c b/sysdeps/mips/fpu/e_sqrt.c
index 20cf6e6703..47488e993c 100644
--- a/sysdeps/mips/fpu/e_sqrt.c
+++ b/sysdeps/mips/fpu/e_sqrt.c
@@ -18,7 +18,7 @@
#include <sgidefs.h>
-
+#include <libm-alias-finite.h>
#if (_MIPS_ISA >= _MIPS_ISA_MIPS2)
@@ -29,7 +29,7 @@ __ieee754_sqrt (double x)
__asm__ ("sqrt.d %0,%1" : "=f" (z) : "f" (x));
return z;
}
-strong_alias (__ieee754_sqrt, __sqrt_finite)
+libm_alias_finite (__ieee754_sqrt, __sqrt)
#else