diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_remquol.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_remquol.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_remquol.c b/sysdeps/ieee754/ldbl-128/s_remquol.c index 7356f5f4ef..f22026d35a 100644 --- a/sysdeps/ieee754/ldbl-128/s_remquol.c +++ b/sysdeps/ieee754/ldbl-128/s_remquol.c @@ -23,11 +23,11 @@ #include <math_private.h> -static const long double zero = 0.0; +static const _Float128 zero = 0.0; -long double -__remquol (long double x, long double y, int *quo) +_Float128 +__remquol (_Float128 x, _Float128 y, int *quo) { int64_t hx,hy; u_int64_t sx,lx,ly,qs; @@ -87,7 +87,7 @@ __remquol (long double x, long double y, int *quo) } else { - long double y_half = 0.5L * y; + _Float128 y_half = 0.5L * y; if (x > y_half) { x -= y; |