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_copysign.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_copysign.c')
-rw-r--r-- | lib/libm/src/s_copysign.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libm/src/s_copysign.c b/lib/libm/src/s_copysign.c index 4cb7b519440..067dad07555 100644 --- a/lib/libm/src/s_copysign.c +++ b/lib/libm/src/s_copysign.c @@ -16,8 +16,6 @@ * with the sign bit of y. */ -/* LINTLIBRARY */ - #include <float.h> #include <math.h> @@ -34,10 +32,5 @@ copysign(double x, double y) } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double copysignl(long double, long double); -#else /* lint */ __weak_alias(copysignl, copysign); -#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ |