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