diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_truncl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_truncl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_truncl.c b/sysdeps/ieee754/ldbl-128/s_truncl.c index 6d1a11e7c4..b445a280e6 100644 --- a/sysdeps/ieee754/ldbl-128/s_truncl.c +++ b/sysdeps/ieee754/ldbl-128/s_truncl.c @@ -27,7 +27,7 @@ _Float128 __truncl (_Float128 x) { int32_t j0; - u_int64_t i0, i1, sx; + uint64_t i0, i1, sx; GET_LDOUBLE_WORDS64 (i0, i1, x); sx = i0 & 0x8000000000000000ULL; |