File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-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 <sys/types .h>
32
+ #include <stdint .h>
33
33
34
34
#ifndef __fenv_static
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_INVALID 0x0001
Original file line number Diff line number Diff line change 1
1
#ifndef _TYPES_COMPAT_H_
2
2
#define _TYPES_COMPAT_H_
3
3
4
- #include <sys/types .h>
4
+ #include <stdint .h>
5
5
#include <limits.h>
6
6
#include <stdint.h>
7
7
13
13
#ifdef _WIN32
14
14
/* Not sure what to do about __pure2 on windows */
15
15
#define __pure2
16
+ #endif
17
+
16
18
typedef uint8_t u_int8_t ;
17
19
typedef uint16_t u_int16_t ;
18
20
typedef uint32_t u_int32_t ;
19
21
typedef uint64_t u_int64_t ;
20
- #endif
21
22
22
23
23
24
#endif
Original file line number Diff line number Diff line change 39
39
#include <float.h>
40
40
#include <openlibm.h>
41
41
#include "math_private.h"
42
- #include <sys/types.h>
43
42
44
43
#include "fpmath.h"
45
44
You can’t perform that action at this time.
0 commit comments