summaryrefslogtreecommitdiff
path: root/libc/sysdeps/ieee754/dbl-wrap/s_tan.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/ieee754/dbl-wrap/s_tan.c')
-rw-r--r--libc/sysdeps/ieee754/dbl-wrap/s_tan.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libc/sysdeps/ieee754/dbl-wrap/s_tan.c b/libc/sysdeps/ieee754/dbl-wrap/s_tan.c
deleted file mode 100644
index ddc99affd..000000000
--- a/libc/sysdeps/ieee754/dbl-wrap/s_tan.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "dbl-wrap.h"
-
-wrap_type_t WRAP_FUNC (tan) (wrap_type_t);
-
-double
-tan (double x)
-{
- return (double) WRAP_FUNC (tan) ((wrap_type_t) x);
-}
-
-#ifdef NO_LONG_DOUBLE
-weak_alias (tan, tanl)
-#endif