Преглед на файлове

Use uint32_t on ARM, not non-standard __uint32_t

Thomas Leonard преди 10 години
родител
ревизия
6146957c5e
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  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