2 * Keep all the ugly #ifdef for system stuff here
12 #if defined(__BEOS__) || \
13 defined(__NetBSD__) || \
14 defined(__FreeBSD__) || \
17 # include <inttypes.h>
18 #elif defined(__linux__) || defined(__WIN32__) || defined(__MINGW32__)
28 #if !defined(__WIN32__) && !defined(__MINGW32__)
29 # include <sys/mman.h>
32 /* Not all systems (like Windows) has this define, and yes
33 * we do replace/emulate mmap() on those systems ...
36 # define MAP_FAILED ((void *)-1)
40 #ifndef O_BINARY /* should be define'd on __WIN32__ */
46 # include <byteswap.h>
47 #elif defined(__MACH__)
48 # include <machine/endian.h>
49 typedef unsigned long ulong;
50 typedef unsigned int uint;
54 typedef uint16_t __u16;
55 typedef uint32_t __u32;
56 typedef unsigned int uint;
59 ((((x) & 0xff00) >> 8) | \
60 (((x) & 0x00ff) << 8))
62 ((((x) & 0xff000000) >> 24) | \
63 (((x) & 0x00ff0000) >> 8) | \
64 (((x) & 0x0000ff00) << 8) | \
65 (((x) & 0x000000ff) << 24))
66 #define _uswap_64(x, sfx) \
67 ((((x) & 0xff00000000000000##sfx) >> 56) | \
68 (((x) & 0x00ff000000000000##sfx) >> 40) | \
69 (((x) & 0x0000ff0000000000##sfx) >> 24) | \
70 (((x) & 0x000000ff00000000##sfx) >> 8) | \
71 (((x) & 0x00000000ff000000##sfx) << 8) | \
72 (((x) & 0x0000000000ff0000##sfx) << 24) | \
73 (((x) & 0x000000000000ff00##sfx) << 40) | \
74 (((x) & 0x00000000000000ff##sfx) << 56))
76 # define uswap_64(x) _uswap_64(x, ull)
78 # define uswap_64(x) _uswap_64(x, )
81 #if __BYTE_ORDER == __LITTLE_ENDIAN
82 # define cpu_to_le16(x) (x)
83 # define cpu_to_le32(x) (x)
84 # define cpu_to_le64(x) (x)
85 # define le16_to_cpu(x) (x)
86 # define le32_to_cpu(x) (x)
87 # define le64_to_cpu(x) (x)
88 # define cpu_to_be16(x) uswap_16(x)
89 # define cpu_to_be32(x) uswap_32(x)
90 # define cpu_to_be64(x) uswap_64(x)
91 # define be16_to_cpu(x) uswap_16(x)
92 # define be32_to_cpu(x) uswap_32(x)
93 # define be64_to_cpu(x) uswap_64(x)
95 # define cpu_to_le16(x) uswap_16(x)
96 # define cpu_to_le32(x) uswap_32(x)
97 # define cpu_to_le64(x) uswap_64(x)
98 # define le16_to_cpu(x) uswap_16(x)
99 # define le32_to_cpu(x) uswap_32(x)
100 # define le64_to_cpu(x) uswap_64(x)
101 # define cpu_to_be16(x) (x)
102 # define cpu_to_be32(x) (x)
103 # define cpu_to_be64(x) (x)
104 # define be16_to_cpu(x) (x)
105 # define be32_to_cpu(x) (x)
106 # define be64_to_cpu(x) (x)
109 #else /* !USE_HOSTCC */
111 #include <linux/string.h>
112 #include <linux/types.h>
113 #include <asm/byteorder.h>
115 /* Types for `void *' pointers. */
117 typedef unsigned long int uintptr_t;
119 typedef unsigned int uintptr_t;
124 /* compiler options */
125 #define uninitialized_var(x) x = x
127 #define likely(x) __builtin_expect(!!(x), 1)
128 #define unlikely(x) __builtin_expect(!!(x), 0)