提交 b050c72d 编写于 作者: M Mike Frysinger 提交者: Wolfgang Denk

compiler.h: add uint typedef

Recent crc changes started using the "uint" type in headers that are used
on the build system.  This subsequently broke mingw targets as they do not
provide such a type.  So add this basic typedef to compiler.h so that we
do not have to worry about this breaking again in the future.
Signed-off-by: NMike Frysinger <vapier@gentoo.org>
上级 39f7aacf
......@@ -55,6 +55,7 @@ typedef unsigned int uint;
typedef uint8_t __u8;
typedef uint16_t __u16;
typedef uint32_t __u32;
typedef unsigned int uint;
#define uswap_16(x) \
((((x) & 0xff00) >> 8) | \
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册