aboutsummaryrefslogtreecommitdiff
path: root/REORG.TODO/math/s_tanhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/math/s_tanhl.c')
-rw-r--r--REORG.TODO/math/s_tanhl.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/REORG.TODO/math/s_tanhl.c b/REORG.TODO/math/s_tanhl.c
new file mode 100644
index 0000000000..ece9a4c5b3
--- /dev/null
+++ b/REORG.TODO/math/s_tanhl.c
@@ -0,0 +1,14 @@
+#include <math.h>
+#include <stdio.h>
+#include <errno.h>
+
+long double
+__tanhl(long double x)
+{
+ fputs ("__tanhl not implemented\n", stderr);
+ __set_errno (ENOSYS);
+ return 0.0;
+}
+
+weak_alias (__tanhl, tanhl)
+stub_warning (tanhl)