diff options
Diffstat (limited to 'math/e_sqrtf128.c')
-rw-r--r-- | math/e_sqrtf128.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/math/e_sqrtf128.c b/math/e_sqrtf128.c deleted file mode 100644 index acf8ba45e3..0000000000 --- a/math/e_sqrtf128.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <math.h> -#include <stdio.h> -#include <errno.h> - -_Float128 -__ieee754_sqrtf128 (_Float128 x) -{ - fputs ("__ieee754_sqrtf128 not implemented\n", stderr); - __set_errno (ENOSYS); - return 0.0; -} -strong_alias (__ieee754_sqrtf128, __sqrtf128_finite) - -stub_warning (sqrtf128) |