aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/m68k/m680x0
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/m68k/m680x0')
-rw-r--r--sysdeps/m68k/m680x0/fpu/e_pow.c2
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c2
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_llrint.c2
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_llrintf.c2
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_llrintl.c2
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_nextafterl.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/m68k/m680x0/fpu/e_pow.c b/sysdeps/m68k/m680x0/fpu/e_pow.c
index f2dad685e3..9a534a72d1 100644
--- a/sysdeps/m68k/m680x0/fpu/e_pow.c
+++ b/sysdeps/m68k/m680x0/fpu/e_pow.c
@@ -106,7 +106,7 @@ s(__ieee754_pow) (float_type x, float_type y)
this format and rounding won't change the result. */
{
int32_t exponent;
- u_int32_t i0, i1;
+ uint32_t i0, i1;
GET_LDOUBLE_WORDS (exponent, i0, i1, y);
exponent = (exponent & 0x7fff) - 0x3fff;
if (exponent <= 31
diff --git a/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c b/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c
index 248a2d3ca4..b599ab379e 100644
--- a/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c
+++ b/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c
@@ -26,7 +26,7 @@
int
__fpclassifyl (long double x)
{
- u_int32_t ex, hx, lx;
+ uint32_t ex, hx, lx;
int retval = FP_NORMAL;
GET_LDOUBLE_WORDS (ex, hx, lx, x);
diff --git a/sysdeps/m68k/m680x0/fpu/s_llrint.c b/sysdeps/m68k/m680x0/fpu/s_llrint.c
index 333f680947..bf80884235 100644
--- a/sysdeps/m68k/m680x0/fpu/s_llrint.c
+++ b/sysdeps/m68k/m680x0/fpu/s_llrint.c
@@ -26,7 +26,7 @@ long long int
__llrint (double x)
{
int32_t e;
- u_int32_t h, l, s;
+ uint32_t h, l, s;
long long int result;
x = __m81_u(__rint) (x);
diff --git a/sysdeps/m68k/m680x0/fpu/s_llrintf.c b/sysdeps/m68k/m680x0/fpu/s_llrintf.c
index b4367a1494..3f4eeb4eba 100644
--- a/sysdeps/m68k/m680x0/fpu/s_llrintf.c
+++ b/sysdeps/m68k/m680x0/fpu/s_llrintf.c
@@ -26,7 +26,7 @@ long long int
__llrintf (float x)
{
int32_t e;
- u_int32_t i, s;
+ uint32_t i, s;
long long int result;
x = __m81_u(__rintf) (x);
diff --git a/sysdeps/m68k/m680x0/fpu/s_llrintl.c b/sysdeps/m68k/m680x0/fpu/s_llrintl.c
index 17a7d7d7b0..69e27b19f9 100644
--- a/sysdeps/m68k/m680x0/fpu/s_llrintl.c
+++ b/sysdeps/m68k/m680x0/fpu/s_llrintl.c
@@ -26,7 +26,7 @@ long long int
__llrintl (long double x)
{
int32_t e, s;
- u_int32_t h, l;
+ uint32_t h, l;
long long int result;
x = __m81_u(__rintl) (x);
diff --git a/sysdeps/m68k/m680x0/fpu/s_nextafterl.c b/sysdeps/m68k/m680x0/fpu/s_nextafterl.c
index c46c0e76ec..2fb7dc2173 100644
--- a/sysdeps/m68k/m680x0/fpu/s_nextafterl.c
+++ b/sysdeps/m68k/m680x0/fpu/s_nextafterl.c
@@ -33,7 +33,7 @@ static char rcsid[] = "$NetBSD: $";
long double __nextafterl(long double x, long double y)
{
int32_t ix,iy,esx,esy;
- u_int32_t hx,hy,lx,ly;
+ uint32_t hx,hy,lx,ly;
GET_LDOUBLE_WORDS(esx,hx,lx,x);
GET_LDOUBLE_WORDS(esy,hy,ly,y);