From 6146957c5e0440a2c8efdf4ee993177826254076 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Thu, 27 Nov 2014 14:45:59 +0000 Subject: [PATCH] Use uint32_t on ARM, not non-standard __uint32_t --- arm/fenv.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arm/fenv.h b/arm/fenv.h index 22bd396..cd25ea9 100644 --- a/arm/fenv.h +++ b/arm/fenv.h @@ -29,14 +29,14 @@ #ifndef _FENV_H_ #define _FENV_H_ -#include +#include #ifndef __fenv_static #define __fenv_static static #endif -typedef __uint32_t fenv_t; -typedef __uint32_t fexcept_t; +typedef uint32_t fenv_t; +typedef uint32_t fexcept_t; /* Exception flags */ #define FE_INVALID 0x0001