Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > d0727d527c46019817409bf00e818a73 > files > 9

pciutils-3.1.10-2.mga3.src.rpm

--- lib/types.h.pix	2005-09-21 13:43:02.000000000 +0200
+++ lib/types.h	2006-01-09 11:06:49.000000000 +0100
@@ -6,7 +6,7 @@
  *	Can be freely distributed and used under the terms of the GNU GPL.
  */
 
-#include <sys/types.h>
+#include <stdint.h>
 
 #ifndef PCI_HAVE_Uxx_TYPES
 
@@ -21,9 +21,9 @@
 typedef uint16_t u16;
 typedef uint32_t u32;
 #else
-typedef u_int8_t u8;
-typedef u_int16_t u16;
-typedef u_int32_t u32;
+typedef uint8_t u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
 #endif
 
 #ifdef PCI_HAVE_64BIT_ADDRESS