summaryrefslogtreecommitdiff
path: root/sysdeps/generic/s_tanhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/s_tanhl.c')
-rw-r--r--sysdeps/generic/s_tanhl.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/sysdeps/generic/s_tanhl.c b/sysdeps/generic/s_tanhl.c
deleted file mode 100644
index bc9a2d7f48..0000000000
--- a/sysdeps/generic/s_tanhl.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#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)
-#include <stub-tag.h>