From dc2971b4a3839bd04b30825556d340b825df822b Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Tue, 15 May 2012 14:40:06 +0200 Subject: [PATCH] built_in: add kernel u* types Signed-off-by: Daniel Borkmann --- src/built_in.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/built_in.h b/src/built_in.h index 23407722..182064ee 100644 --- a/src/built_in.h +++ b/src/built_in.h @@ -246,4 +246,9 @@ static inline uint64_t ntohll(uint64_t x) # error __BYTE_ORDER is neither __LITTLE_ENDIAN nor __BIG_ENDIAN #endif +typedef uint64_t u64; +typedef uint32_t u32; +typedef uint16_t u16; +typedef uint8_t u8; + #endif /* BUILT_IN_H */ -- 2.11.4.GIT