summary refs log tree commit diff
path: root/sysdeps/stub/k_tanl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/stub/k_tanl.c')
-rw-r--r--sysdeps/stub/k_tanl.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/sysdeps/stub/k_tanl.c b/sysdeps/stub/k_tanl.c
deleted file mode 100644
index 95ffc23bd9..0000000000
--- a/sysdeps/stub/k_tanl.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <math.h>
-#include <stdio.h>
-#include <errno.h>
-
-long double
-__kernel_tanl (long double x, long double y, int iy)
-{
-  fputs ("__kernel_tanl not implemented\n", stderr);
-  __set_errno (ENOSYS);
-  return 0.0;
-}
-
-stub_warning (__kernel_tanl)