From 8db218828187d58575c509b6ed3da0cad9f73519 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 27 Jan 2012 17:27:55 +0000 Subject: Remove __STDC__ conditionals from libm. --- math/w_jnl.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'math/w_jnl.c') diff --git a/math/w_jnl.c b/math/w_jnl.c index 1dd9ae1..148817f 100644 --- a/math/w_jnl.c +++ b/math/w_jnl.c @@ -47,12 +47,7 @@ static char rcsid[] = "$NetBSD: $"; #include #include -#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); -- cgit v1.1