compiler.h: add uint typedef
authorMike Frysinger <vapier@gentoo.org>
Tue, 20 Apr 2010 09:49:30 +0000 (05:49 -0400)
committerWolfgang Denk <wd@denx.de>
Wed, 5 May 2010 22:38:05 +0000 (00:38 +0200)
Recent crc changes started using the "uint" type in headers that are used
on the build system.  This subsequently broke mingw targets as they do not
provide such a type.  So add this basic typedef to compiler.h so that we
do not have to worry about this breaking again in the future.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
include/compiler.h

index 332618e9de9c04282433030c87b1b2272556ccb5..8030bf6ed23bb9b371c2eb5bb289e031a5f23f93 100644 (file)
@@ -55,6 +55,7 @@ typedef unsigned int  uint;
 typedef uint8_t __u8;
 typedef uint16_t __u16;
 typedef uint32_t __u32;
+typedef unsigned int uint;
 
 #define uswap_16(x) \
        ((((x) & 0xff00) >> 8) | \