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. --- sysdeps/ieee754/ldbl-128/s_copysignl.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'sysdeps/ieee754/ldbl-128/s_copysignl.c') diff --git a/sysdeps/ieee754/ldbl-128/s_copysignl.c b/sysdeps/ieee754/ldbl-128/s_copysignl.c index cece4f2496..3426ccddf0 100644 --- a/sysdeps/ieee754/ldbl-128/s_copysignl.c +++ b/sysdeps/ieee754/ldbl-128/s_copysignl.c @@ -26,12 +26,7 @@ static char rcsid[] = "$NetBSD: $"; #include "math.h" #include "math_private.h" -#ifdef __STDC__ - long double __copysignl(long double x, long double y) -#else - long double __copysignl(x,y) - long double x,y; -#endif +long double __copysignl(long double x, long double y) { u_int64_t hx,hy; GET_LDOUBLE_MSW64(hx,x); -- cgit 1.4.1