Use uint32_t on ARM, not non-standard __uint32_t

This commit is contained in:
Thomas Leonard 2014-11-27 14:45:59 +00:00
parent 9f4f2c6d57
commit 6146957c5e

View file

@ -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