From 0b8481982efa5a2fbb83aa12204256ce07220437 Mon Sep 17 00:00:00 2001 From: alfred Date: Tue, 28 May 2002 17:51:46 +0000 Subject: Assume __STDC__, remove non-__STDC__ code. Reviewed by: md5 --- lib/msun/src/s_asinhf.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'lib/msun/src/s_asinhf.c') diff --git a/lib/msun/src/s_asinhf.c b/lib/msun/src/s_asinhf.c index 9910b2a..9def250 100644 --- a/lib/msun/src/s_asinhf.c +++ b/lib/msun/src/s_asinhf.c @@ -20,21 +20,12 @@ static char rcsid[] = "$FreeBSD$"; #include "math.h" #include "math_private.h" -#ifdef __STDC__ static const float -#else -static float -#endif one = 1.0000000000e+00, /* 0x3F800000 */ ln2 = 6.9314718246e-01, /* 0x3f317218 */ huge= 1.0000000000e+30; -#ifdef __STDC__ float asinhf(float x) -#else - float asinhf(x) - float x; -#endif { float t,w; int32_t hx,ix; -- cgit v1.1