Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/mathfp/s_asinh.c')
-rw-r--r--newlib/libm/mathfp/s_asinh.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/newlib/libm/mathfp/s_asinh.c b/newlib/libm/mathfp/s_asinh.c
index cedc941a3..06b75a905 100644
--- a/newlib/libm/mathfp/s_asinh.c
+++ b/newlib/libm/mathfp/s_asinh.c
@@ -60,21 +60,12 @@ Neither <<asinh>> nor <<asinhf>> are ANSI C.
#ifndef _DOUBLE_IS_32BITS
-#ifdef __STDC__
static const double
-#else
-static double
-#endif
one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */
huge= 1.00000000000000000000e+300;
-#ifdef __STDC__
double asinh(double x)
-#else
- double asinh(x)
- double x;
-#endif
{
double t,w;
__int32_t hx,ix;