Skip to content

Commit 6146957

Browse files
committed
Use uint32_t on ARM, not non-standard __uint32_t
1 parent 9f4f2c6 commit 6146957

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arm/fenv.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929
#ifndef _FENV_H_
3030
#define _FENV_H_
3131

32-
#include <sys/types.h>
32+
#include <stdint.h>
3333

3434
#ifndef __fenv_static
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_INVALID 0x0001

0 commit comments

Comments
 (0)