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