File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 35
35
#define __fenv_static static
36
36
#endif
37
37
38
- typedef __uint32_t fenv_t ;
39
- typedef __uint32_t fexcept_t ;
38
+ typedef uint32_t fenv_t ;
39
+ typedef uint32_t fexcept_t ;
40
40
41
41
/* Exception flags */
42
42
#define FE_INEXACT 0x02000000
@@ -99,9 +99,9 @@ union __fpscr {
99
99
struct {
100
100
#if defined(__BYTE_ORDER__ ) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ )
101
101
fenv_t __reg ;
102
- __uint32_t __junk ;
102
+ uint32_t __junk ;
103
103
#else
104
- __uint32_t __junk ;
104
+ uint32_t __junk ;
105
105
fenv_t __reg ;
106
106
#endif
107
107
} __bits ;
Original file line number Diff line number Diff line change 35
35
#define __fenv_static static
36
36
#endif
37
37
38
- typedef __uint32_t fenv_t ;
39
- typedef __uint32_t fexcept_t ;
38
+ typedef uint32_t fenv_t ;
39
+ typedef uint32_t fexcept_t ;
40
40
41
41
/* Exception flags */
42
42
#define FE_INEXACT 0x080000
You can’t perform that action at this time.
0 commit comments