From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Andreas=20Bie=C3=9Fmann?= Date: Sat, 25 Sep 2010 17:45:59 +0200 Subject: [U-Boot] [PATCH] include/compiler.h: remove uint typedef for __MACH__ Message-ID: <1285429559-44573-1-git-send-email-andreas.devel@googlemail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- include/compiler.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/compiler.h b/include/compiler.h index 23f4b83..91dbe56 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; -- 1.7.3