summaryrefslogtreecommitdiffstats
path: root/lib/libm/src/s_expm1.c
diff options
context:
space:
mode:
authormartynas <martynas@openbsd.org>2013-01-13 03:44:59 +0000
committermartynas <martynas@openbsd.org>2013-01-13 03:44:59 +0000
commitbec2cc9ed0f86f0319e7da7794f847fd97d09187 (patch)
treefbe022f5be3c714a8784e62303796d9ec08776c1 /lib/libm/src/s_expm1.c
parentsync (diff)
downloadwireguard-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_expm1.c')
-rw-r--r--lib/libm/src/s_expm1.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libm/src/s_expm1.c b/lib/libm/src/s_expm1.c
index a201550032a..199a8b283f0 100644
--- a/lib/libm/src/s_expm1.c
+++ b/lib/libm/src/s_expm1.c
@@ -10,8 +10,6 @@
* ====================================================
*/
-/* LINTLIBRARY */
-
/* expm1(x)
* Returns exp(x)-1, the exponential of x minus 1.
*
@@ -220,10 +218,5 @@ expm1(double x)
}
#if LDBL_MANT_DIG == 53
-#ifdef lint
-/* PROTOLIB1 */
-long double expm1l(long double);
-#else /* lint */
__weak_alias(expm1l, expm1);
-#endif /* lint */
#endif /* LDBL_MANT_DIG == 53 */