diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-01-27 17:27:55 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-01-27 17:29:45 +0000 |
commit | 8db218828187d58575c509b6ed3da0cad9f73519 (patch) | |
tree | 193c89c1df3a62941623e77426285d802a2cfcd2 /math/w_jnl.c | |
parent | 43455e09166350b1237d2168d1b008c9f47ebaf0 (diff) | |
download | glibc-8db218828187d58575c509b6ed3da0cad9f73519.tar.gz glibc-8db218828187d58575c509b6ed3da0cad9f73519.tar.xz glibc-8db218828187d58575c509b6ed3da0cad9f73519.zip |
Remove __STDC__ conditionals from libm.
Diffstat (limited to 'math/w_jnl.c')
-rw-r--r-- | math/w_jnl.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/math/w_jnl.c b/math/w_jnl.c index 1dd9ae1517..148817ff44 100644 --- a/math/w_jnl.c +++ b/math/w_jnl.c @@ -47,12 +47,7 @@ static char rcsid[] = "$NetBSD: $"; #include <math.h> #include <math_private.h> -#ifdef __STDC__ - long double __jnl(int n, long double x) /* wrapper jnl */ -#else - long double __jnl(n,x) /* wrapper jnl */ - long double x; int n; -#endif +long double __jnl(int n, long double x) /* wrapper jnl */ { #ifdef _IEEE_LIBM return __ieee754_jnl(n,x); @@ -68,12 +63,7 @@ static char rcsid[] = "$NetBSD: $"; } weak_alias (__jnl, jnl) -#ifdef __STDC__ - long double __ynl(int n, long double x) /* wrapper ynl */ -#else - long double __ynl(n,x) /* wrapper ynl */ - long double x; int n; -#endif +long double __ynl(int n, long double x) /* wrapper ynl */ { #ifdef _IEEE_LIBM return __ieee754_ynl(n,x); |