mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
Use uint32_t on ARM, not non-standard __uint32_t
This commit is contained in:
parent
9f4f2c6d57
commit
6146957c5e
1 changed files with 3 additions and 3 deletions
|
@ -29,14 +29,14 @@
|
||||||
#ifndef _FENV_H_
|
#ifndef _FENV_H_
|
||||||
#define _FENV_H_
|
#define _FENV_H_
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#ifndef __fenv_static
|
#ifndef __fenv_static
|
||||||
#define __fenv_static static
|
#define __fenv_static static
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef __uint32_t fenv_t;
|
typedef uint32_t fenv_t;
|
||||||
typedef __uint32_t fexcept_t;
|
typedef uint32_t fexcept_t;
|
||||||
|
|
||||||
/* Exception flags */
|
/* Exception flags */
|
||||||
#define FE_INVALID 0x0001
|
#define FE_INVALID 0x0001
|
||||||
|
|
Loading…
Reference in a new issue