diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_isnanl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_isnanl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_isnanl.c b/sysdeps/ieee754/ldbl-128/s_isnanl.c index 74960e7ff2..1dee642512 100644 --- a/sysdeps/ieee754/ldbl-128/s_isnanl.c +++ b/sysdeps/ieee754/ldbl-128/s_isnanl.c @@ -25,7 +25,7 @@ static char rcsid[] = "$NetBSD: $"; #include <math.h> #include <math_private.h> -int __isnanl(long double x) +int __isnanl(_Float128 x) { int64_t hx,lx; GET_LDOUBLE_WORDS64(hx,lx,x); |