summaryrefslogtreecommitdiff
path: root/lib/libm/noieee_src/n_tan.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libm/noieee_src/n_tan.c')
-rw-r--r--lib/libm/noieee_src/n_tan.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libm/noieee_src/n_tan.c b/lib/libm/noieee_src/n_tan.c
index 88ffb3cfc19..731d2b7f1d8 100644
--- a/lib/libm/noieee_src/n_tan.c
+++ b/lib/libm/noieee_src/n_tan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: n_tan.c,v 1.11 2012/12/05 23:20:03 deraadt Exp $ */
+/* $OpenBSD: n_tan.c,v 1.12 2013/01/13 03:44:59 martynas Exp $ */
/* $NetBSD: n_tan.c,v 1.1 1995/10/10 23:37:07 ragge Exp $ */
/*
* Copyright (c) 1987, 1993
@@ -29,8 +29,6 @@
* SUCH DAMAGE.
*/
-/* LINTLIBRARY */
-
#include <math.h>
#include "mathimpl.h"
@@ -67,9 +65,4 @@ tan(double x)
return c/(x+x*ss); /* ... cos/sin */
}
-#ifdef lint
-/* PROTOLIB1 */
-long double tanl(long double);
-#else /* lint */
__weak_alias(tanl, tan);
-#endif /* lint */