wg: do not collide types with libc clashes

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2018-02-17 18:58:31 +01:00
parent 2f42abeb56
commit 5ecc49a62f

View file

@ -8,12 +8,18 @@
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
typedef uint64_t u64; #ifdef __linux__
typedef uint32_t u32; #include <linux/types.h>
typedef __u64 u64;
typedef __u32 u32;
typedef __u8 u8;
typedef __s64 s64;
#else
typedef uint64_t u64, __le64;
typedef uint32_t u32, __le32;
typedef uint8_t u8; typedef uint8_t u8;
typedef int64_t s64; typedef int64_t s64;
typedef u64 __le64; #endif
typedef u32 __le32;
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
#define le64_to_cpup(a) __builtin_bswap64(*(a)) #define le64_to_cpup(a) __builtin_bswap64(*(a))
#define le32_to_cpup(a) __builtin_bswap32(*(a)) #define le32_to_cpup(a) __builtin_bswap32(*(a))