From: Andreas Bießmann Date: Sat, 25 Sep 2010 15:45:59 +0000 (+0200) Subject: include/compiler.h: remove uint typedef for __MACH__ X-Git-Tag: v2010.12-rc1~152 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=59336459042a5fccb2dda9cfbb592802c88f583d;p=u-boot include/compiler.h: remove uint typedef for __MACH__ uint is typedefed twice if __MACH__ is defined. This generates an error when calling MAKEALL for netstar bord on OS X. This patch removes the typedef for __MACH__ case in favor of general definiton some lines below. Signed-off-by: Andreas Bießmann --- diff --git a/include/compiler.h b/include/compiler.h index 23f4b834d8..91dbe56994 100644 --- a/include/compiler.h +++ b/include/compiler.h @@ -47,7 +47,6 @@ #elif defined(__MACH__) # include typedef unsigned long ulong; -typedef unsigned int uint; #endif typedef uint8_t __u8;