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/e_pow.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/e_pow.c')
-rw-r--r-- | lib/libm/src/e_pow.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libm/src/e_pow.c b/lib/libm/src/e_pow.c index 59a885ce2d5..14db64ce5a9 100644 --- a/lib/libm/src/e_pow.c +++ b/lib/libm/src/e_pow.c @@ -10,8 +10,6 @@ * ==================================================== */ -/* LINTLIBRARY */ - /* pow(x,y) return x**y * * n @@ -301,10 +299,5 @@ pow(double x, double y) } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double powl(long double, long double); -#else /* lint */ __weak_alias(powl, pow); -#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ |