diff options
author | 2013-01-13 03:44:59 +0000 | |
---|---|---|
committer | 2013-01-13 03:44:59 +0000 | |
commit | bec2cc9ed0f86f0319e7da7794f847fd97d09187 (patch) | |
tree | fbe022f5be3c714a8784e62303796d9ec08776c1 /lib/libm/src/s_tan.c | |
parent | sync (diff) | |
download | wireguard-openbsd-bec2cc9ed0f86f0319e7da7794f847fd97d09187.tar.xz wireguard-openbsd-bec2cc9ed0f86f0319e7da7794f847fd97d09187.zip |
Get rid of the very ugly lint workarounds: LINTLIBRARY, PROTOLIB,
and a few empty files for lint to chew on.
Diffstat (limited to 'lib/libm/src/s_tan.c')
-rw-r--r-- | lib/libm/src/s_tan.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libm/src/s_tan.c b/lib/libm/src/s_tan.c index 6b275d3e2a3..f1f72420682 100644 --- a/lib/libm/src/s_tan.c +++ b/lib/libm/src/s_tan.c @@ -40,8 +40,6 @@ * TRIG(x) returns trig(x) nearly rounded */ -/* LINTLIBRARY */ - #include <float.h> #include <math.h> @@ -72,10 +70,5 @@ tan(double x) } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double tanl(long double); -#else /* lint */ __weak_alias(tanl, tan); -#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ |