Explorar el Código

Use uint32_t on ARM, not non-standard __uint32_t

Thomas Leonard hace 10 años
padre
commit
6146957c5e
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      arm/fenv.h

+ 3 - 3
arm/fenv.h

@@ -29,14 +29,14 @@
 #ifndef	_FENV_H_
 #define	_FENV_H_
 
-#include <sys/types.h>
+#include <stdint.h>
 
 #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