From 59336459042a5fccb2dda9cfbb592802c88f583d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20Bie=C3=9Fmann?= Date: Sat, 25 Sep 2010 17:45:59 +0200 Subject: [PATCH] include/compiler.h: remove uint typedef for __MACH__ MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 file changed, 1 deletion(-) 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; -- 2.39.2