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 3535#define __fenv_static static
3636#endif
3737
38- typedef __uint32_t fenv_t ;
39- typedef __uint32_t fexcept_t ;
38+ typedef uint32_t fenv_t ;
39+ typedef uint32_t fexcept_t ;
4040
4141/* Exception flags */
4242#define FE_INEXACT 0x02000000
@@ -99,9 +99,9 @@ union __fpscr {
9999 struct {
100100#if defined(__BYTE_ORDER__ ) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ )
101101 fenv_t __reg ;
102- __uint32_t __junk ;
102+ uint32_t __junk ;
103103#else
104- __uint32_t __junk ;
104+ uint32_t __junk ;
105105 fenv_t __reg ;
106106#endif
107107 } __bits ;
Original file line number Diff line number Diff line change 3535#define __fenv_static static
3636#endif
3737
38- typedef __uint32_t fenv_t ;
39- typedef __uint32_t fexcept_t ;
38+ typedef uint32_t fenv_t ;
39+ typedef uint32_t fexcept_t ;
4040
4141/* Exception flags */
4242#define FE_INEXACT 0x080000
You can’t perform that action at this time.
0 commit comments