]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
include/compiler.h: remove uint typedef for __MACH__
authorAndreas Bießmann <andreas.devel@googlemail.com>
Sat, 25 Sep 2010 15:45:59 +0000 (17:45 +0200)
committerWolfgang Denk <wd@denx.de>
Wed, 6 Oct 2010 21:09:42 +0000 (23:09 +0200)
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 <andreas.devel@googlemail.com>
include/compiler.h

index 23f4b834d8df0fdf3d821c2d52deb9aff56a3cce..91dbe56994c240c42be04b9d9e848e0e7a1f33c5 100644 (file)
@@ -47,7 +47,6 @@
 #elif defined(__MACH__)
 # include <machine/endian.h>
 typedef unsigned long ulong;
-typedef unsigned int  uint;
 #endif
 
 typedef uint8_t __u8;