diff options
Diffstat (limited to 'sysdeps/arm/e_sqrtf.c')
-rw-r--r-- | sysdeps/arm/e_sqrtf.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 |