File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,12 @@ typedef union
48
48
double value ;
49
49
struct
50
50
{
51
- u_int32_t msw ;
52
- u_int32_t lsw ;
51
+ uint32_t msw ;
52
+ uint32_t lsw ;
53
53
} parts ;
54
54
struct
55
55
{
56
- u_int64_t w ;
56
+ uint64_t w ;
57
57
} xparts ;
58
58
} ieee_double_shape_type ;
59
59
@@ -66,12 +66,12 @@ typedef union
66
66
double value ;
67
67
struct
68
68
{
69
- u_int32_t lsw ;
70
- u_int32_t msw ;
69
+ uint32_t lsw ;
70
+ uint32_t msw ;
71
71
} parts ;
72
72
struct
73
73
{
74
- u_int64_t w ;
74
+ uint64_t w ;
75
75
} xparts ;
76
76
} ieee_double_shape_type ;
77
77
@@ -227,7 +227,7 @@ do { \
227
227
/*
228
228
* Common routine to process the arguments to nan(), nanf(), and nanl().
229
229
*/
230
- void _scan_nan (u_int32_t * __words , int __num_words , const char * __s );
230
+ void _scan_nan (uint32_t * __words , int __num_words , const char * __s );
231
231
232
232
#ifdef __GNUCLIKE_ASM
233
233
You can’t perform that action at this time.
0 commit comments