diff options
Diffstat (limited to 'sysdeps/s390/fpu/e_sqrtf.c')
-rw-r--r-- | sysdeps/s390/fpu/e_sqrtf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/s390/fpu/e_sqrtf.c b/sysdeps/s390/fpu/e_sqrtf.c index 8209d6a479..bce49c90f1 100644 --- a/sysdeps/s390/fpu/e_sqrtf.c +++ b/sysdeps/s390/fpu/e_sqrtf.c @@ -17,6 +17,7 @@ <https://www.gnu.org/licenses/>. */ #include <math_private.h> +#include <libm-alias-finite.h> float __ieee754_sqrtf (float x) @@ -26,4 +27,4 @@ __ieee754_sqrtf (float x) __asm__ ( "sqebr %0,%1" : "=f" (res) : "f" (x) ); return res; } -strong_alias (__ieee754_sqrtf, __sqrtf_finite) +libm_alias_finite (__ieee754_sqrtf, __sqrtf) |