diff options
Diffstat (limited to 'sysdeps/generic/math_private.h')
-rw-r--r-- | sysdeps/generic/math_private.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/generic/math_private.h b/sysdeps/generic/math_private.h index 1418bbd..f1da7c3 100644 --- a/sysdeps/generic/math_private.h +++ b/sysdeps/generic/math_private.h @@ -47,8 +47,8 @@ typedef union double value; struct { - u_int32_t msw; - u_int32_t lsw; + uint32_t msw; + uint32_t lsw; } parts; uint64_t word; } ieee_double_shape_type; @@ -62,8 +62,8 @@ typedef union double value; struct { - u_int32_t lsw; - u_int32_t msw; + uint32_t lsw; + uint32_t msw; } parts; uint64_t word; } ieee_double_shape_type; @@ -161,7 +161,7 @@ do { \ typedef union { float value; - u_int32_t word; + uint32_t word; } ieee_float_shape_type; /* Get a 32 bit int from a float. */ |