aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/src/e_sinh.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-05-28 17:51:46 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-05-28 17:51:46 +0000
commit2dcc228679cb39677331f1064bedb9eac825a52f (patch)
tree8cb4143d5f74c1c235f3d5ef0547bdf3f395a536 /lib/msun/src/e_sinh.c
parentd9d34030a4088431c5cc12a6ee1ce024c6b48777 (diff)
downloadsrc-2dcc228679cb39677331f1064bedb9eac825a52f.tar.gz
src-2dcc228679cb39677331f1064bedb9eac825a52f.zip
Assume __STDC__, remove non-__STDC__ code.
Reviewed by: md5
Notes
Notes: svn path=/head/; revision=97409
Diffstat (limited to 'lib/msun/src/e_sinh.c')
-rw-r--r--lib/msun/src/e_sinh.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/msun/src/e_sinh.c b/lib/msun/src/e_sinh.c
index 2ac789118699..94cf567c3c8b 100644
--- a/lib/msun/src/e_sinh.c
+++ b/lib/msun/src/e_sinh.c
@@ -35,18 +35,9 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const double one = 1.0, shuge = 1.0e307;
-#else
-static double one = 1.0, shuge = 1.0e307;
-#endif
-#ifdef __STDC__
double __ieee754_sinh(double x)
-#else
- double __ieee754_sinh(x)
- double x;
-#endif
{
double t,w,h;
int32_t ix,jx;