File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-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>
34
+ #include "cdefs-compat.h"
33
35
34
36
#ifndef __fenv_static
35
37
#define __fenv_static static
36
38
#endif
37
39
38
- typedef __uint32_t fenv_t ;
39
- typedef __uint32_t fexcept_t ;
40
+ typedef uint32_t fenv_t ;
41
+ typedef uint32_t fexcept_t ;
40
42
41
43
/* Exception flags */
42
44
#define FE_INEXACT 0x02000000
@@ -99,9 +101,9 @@ union __fpscr {
99
101
struct {
100
102
#if defined(__BYTE_ORDER__ ) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ )
101
103
fenv_t __reg ;
102
- __uint32_t __junk ;
104
+ uint32_t __junk ;
103
105
#else
104
- __uint32_t __junk ;
106
+ uint32_t __junk ;
105
107
fenv_t __reg ;
106
108
#endif
107
109
} __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>
34
+ #include "cdefs-compat.h"
33
35
34
36
#ifndef __fenv_static
35
37
#define __fenv_static static
36
38
#endif
37
39
38
- typedef __uint32_t fenv_t ;
39
- typedef __uint32_t fexcept_t ;
40
+ typedef uint32_t fenv_t ;
41
+ typedef uint32_t fexcept_t ;
40
42
41
43
/* Exception flags */
42
44
#define FE_INEXACT 0x080000
You can’t perform that action at this time.
0 commit comments