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/wf_jn.c')
-rw-r--r--newlib/libm/mathfp/wf_jn.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/newlib/libm/mathfp/wf_jn.c b/newlib/libm/mathfp/wf_jn.c
index ebc886de9..356ae5d29 100644
--- a/newlib/libm/mathfp/wf_jn.c
+++ b/newlib/libm/mathfp/wf_jn.c
@@ -17,12 +17,7 @@
#include <errno.h>
-#ifdef __STDC__
float jnf(int n, float x) /* wrapper jnf */
-#else
- float jnf(n,x) /* wrapper jnf */
- float x; int n;
-#endif
{
#ifdef _IEEE_LIBM
return jnf(n,x);
@@ -52,12 +47,7 @@
#endif
}
-#ifdef __STDC__
float ynf(int n, float x) /* wrapper ynf */
-#else
- float ynf(n,x) /* wrapper ynf */
- float x; int n;
-#endif
{
#ifdef _IEEE_LIBM
return ynf(n,x);
@@ -115,22 +105,12 @@
#ifdef _DOUBLE_IS_32BITS
-#ifdef __STDC__
double jn(int n, double x)
-#else
- double jn(n,x)
- double x; int n;
-#endif
{
return (double) jnf(n, (float) x);
}
-#ifdef __STDC__
double yn(int n, double x)
-#else
- double yn(n,x)
- double x; int n;
-#endif
{
return (double) ynf(n, (float) x);
}