diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_copysignl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_copysignl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_copysignl.c b/sysdeps/ieee754/ldbl-128/s_copysignl.c index 19b6880940..8ee85ea8f7 100644 --- a/sysdeps/ieee754/ldbl-128/s_copysignl.c +++ b/sysdeps/ieee754/ldbl-128/s_copysignl.c @@ -26,7 +26,7 @@ static char rcsid[] = "$NetBSD: $"; #include <math.h> #include <math_private.h> -long double __copysignl(long double x, long double y) +_Float128 __copysignl(_Float128 x, _Float128 y) { u_int64_t hx,hy; GET_LDOUBLE_MSW64(hx,x); |