diff options
Diffstat (limited to 'sysdeps/x86_64/fpu/e_sqrtf.c')
-rw-r--r-- | sysdeps/x86_64/fpu/e_sqrtf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/x86_64/fpu/e_sqrtf.c b/sysdeps/x86_64/fpu/e_sqrtf.c index 2002250184..6155c7be24 100644 --- a/sysdeps/x86_64/fpu/e_sqrtf.c +++ b/sysdeps/x86_64/fpu/e_sqrtf.c @@ -17,6 +17,7 @@ <https://www.gnu.org/licenses/>. */ #include <math_private.h> +#include <libm-alias-finite.h> #undef __ieee754_sqrtf float @@ -28,4 +29,4 @@ __ieee754_sqrtf (float x) return res; } -strong_alias (__ieee754_sqrtf, __sqrtf_finite) +libm_alias_finite (__ieee754_sqrtf, __sqrtf) |