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_cos.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_cos.c')
-rw-r--r-- | lib/libm/src/s_cos.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libm/src/s_cos.c b/lib/libm/src/s_cos.c index dcabc7ae0e2..7950edc55ba 100644 --- a/lib/libm/src/s_cos.c +++ b/lib/libm/src/s_cos.c @@ -41,8 +41,6 @@ * TRIG(x) returns trig(x) nearly rounded */ -/* LINTLIBRARY */ - #include <float.h> #include <math.h> @@ -78,10 +76,5 @@ cos(double x) } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double cosl(long double); -#else /* lint */ __weak_alias(cosl, cos); -#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ |