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/sf_asinh.c')
-rw-r--r--newlib/libm/mathfp/sf_asinh.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/newlib/libm/mathfp/sf_asinh.c b/newlib/libm/mathfp/sf_asinh.c
index ee07e39f0..24f821384 100644
--- a/newlib/libm/mathfp/sf_asinh.c
+++ b/newlib/libm/mathfp/sf_asinh.c
@@ -15,21 +15,12 @@
#include "fdlibm.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;
@@ -53,12 +44,7 @@ huge= 1.0000000000e+30;
#ifdef _DOUBLE_IS_32BITS
-#ifdef __STDC__
double asinh(double x)
-#else
- double asinh(x)
- double x;
-#endif
{
return (double) asinhf((float) x);
}