mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 01:21:06 +00:00
8a7923b57e
The generic implementation is simplified by removing the 'optimization' for !_IEEE_FP_INEXACT (which does not handle inexact neither some values). Checked on alpha-linux-gnu.
9 lines
250 B
C
9 lines
250 B
C
#include <shlib-compat.h>
|
|
|
|
#include <sysdeps/ieee754/flt-32/e_sqrtf.c>
|
|
|
|
#if SHLIB_COMPAT (libm, GLIBC_2_18, GLIBC_2_31)
|
|
strong_alias (__ieee754_sqrtf, __sqrtf_finite_2_18)
|
|
compat_symbol (libm, __sqrtf_finite_2_18, __sqrtf_finite, GLIBC_2_18);
|
|
#endif
|