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