aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/arm
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/arm')
-rw-r--r--sysdeps/arm/e_sqrt.c3
-rw-r--r--sysdeps/arm/e_sqrtf.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/arm/e_sqrt.c b/sysdeps/arm/e_sqrt.c
index 065cbdba57..d264c4263b 100644
--- a/sysdeps/arm/e_sqrt.c
+++ b/sysdeps/arm/e_sqrt.c
@@ -26,6 +26,7 @@
/* Use VFP square root instruction. */
# include <math.h>
# include <sysdep.h>
+# include <libm-alias-finite.h>
double
__ieee754_sqrt (double x)
@@ -40,6 +41,6 @@ __ieee754_sqrt (double x)
# endif
return ret;
}
-strong_alias (__ieee754_sqrt, __sqrt_finite)
+libm_alias_finite (__ieee754_sqrt, __sqrt)
#endif
diff --git a/sysdeps/arm/e_sqrtf.c b/sysdeps/arm/e_sqrtf.c
index 80fead1023..c3f31119a3 100644
--- a/sysdeps/arm/e_sqrtf.c
+++ b/sysdeps/arm/e_sqrtf.c
@@ -26,6 +26,7 @@
/* Use VFP square root instruction. */
# include <math.h>
# include <sysdep.h>
+# include <libm-alias-finite.h>
float
__ieee754_sqrtf (float x)
@@ -40,6 +41,6 @@ __ieee754_sqrtf (float x)
# endif
return ret;
}
-strong_alias (__ieee754_sqrtf, __sqrtf_finite)
+libm_alias_finite (__ieee754_sqrtf, __sqrtf)
#endif