瀏覽代碼

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 <andreas.devel@googlemail.com>
Andreas Bießmann 14 年之前
父節點
當前提交
5933645904
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      include/compiler.h

+ 0 - 1
include/compiler.h

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