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/b_tgamma.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/b_tgamma.c')
-rw-r--r-- | lib/libm/src/b_tgamma.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libm/src/b_tgamma.c b/lib/libm/src/b_tgamma.c index 725e0257492..96c2881ba1b 100644 --- a/lib/libm/src/b_tgamma.c +++ b/lib/libm/src/b_tgamma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: b_tgamma.c,v 1.5 2012/12/05 23:20:03 deraadt Exp $ */ +/* $OpenBSD: b_tgamma.c,v 1.6 2013/01/13 03:45:00 martynas Exp $ */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -28,8 +28,6 @@ * SUCH DAMAGE. */ -/* LINTLIBRARY */ - /* * This code by P. McIlroy, Oct 1992; * @@ -336,10 +334,5 @@ neg_gam(double x) } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double tgammal(long double); -#else /* lint */ __weak_alias(tgammal, tgamma); -#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ |