diff options
Diffstat (limited to 'math/e_sqrtf128.c')
-rw-r--r-- | math/e_sqrtf128.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/math/e_sqrtf128.c b/math/e_sqrtf128.c new file mode 100644 index 0000000000..acf8ba45e3 --- /dev/null +++ b/math/e_sqrtf128.c @@ -0,0 +1,14 @@ +#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) |