Merge branch 'misc' into for-linus
[cascardo/linux.git] / tools / virtio / linux / types.h
1 #ifndef TYPES_H
2 #define TYPES_H
3 #include <stdint.h>
4
5 #define __force
6 #define __user
7 #define __must_check
8 #define __cold
9
10 typedef uint64_t u64;
11 typedef int64_t s64;
12 typedef uint32_t u32;
13 typedef int32_t s32;
14 typedef uint16_t u16;
15 typedef int16_t s16;
16 typedef uint8_t u8;
17 typedef int8_t s8;
18
19 typedef uint64_t __u64;
20 typedef int64_t __s64;
21 typedef uint32_t __u32;
22 typedef int32_t __s32;
23 typedef uint16_t __u16;
24 typedef int16_t __s16;
25 typedef uint8_t __u8;
26 typedef int8_t __s8;
27
28 #endif /* TYPES_H */