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_catan.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_catan.c')
-rw-r--r-- | lib/libm/src/s_catan.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libm/src/s_catan.c b/lib/libm/src/s_catan.c index fc7099b7259..eaaa29b32fa 100644 --- a/lib/libm/src/s_catan.c +++ b/lib/libm/src/s_catan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s_catan.c,v 1.3 2012/12/05 23:20:04 deraadt Exp $ */ +/* $OpenBSD: s_catan.c,v 1.4 2013/01/13 03:45:00 martynas Exp $ */ /* * Copyright (c) 2008 Stephen L. Moshier <steve@moshier.net> * @@ -15,8 +15,6 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* LINTLIBRARY */ - /* catan() * * Complex circular arc tangent @@ -129,10 +127,5 @@ ovrf: } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double complex catanl(long double complex); -#else /* lint */ __weak_alias(catanl, catan); -#endif /* lint */ #endif /* LDBL_MANT_DIG == 53 */ |