diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-96/s_nextupl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-96/s_nextupl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-96/s_nextupl.c b/sysdeps/ieee754/ldbl-96/s_nextupl.c index aa66eaf..beea047 100644 --- a/sysdeps/ieee754/ldbl-96/s_nextupl.c +++ b/sysdeps/ieee754/ldbl-96/s_nextupl.c @@ -23,8 +23,8 @@ long double __nextupl (long double x) { - u_int32_t hx, ix; - u_int32_t lx; + uint32_t hx, ix; + uint32_t lx; int32_t esx; GET_LDOUBLE_WORDS (esx, hx, lx, x); |