]> git.karo-electronics.de Git - karo-tx-linux.git/blob - tools/testing/selftests/bpf/include/uapi/linux/types.h
Merge branch 'ufs-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[karo-tx-linux.git] / tools / testing / selftests / bpf / include / uapi / linux / types.h
1 #ifndef _UAPI_LINUX_TYPES_H
2 #define _UAPI_LINUX_TYPES_H
3
4 #include <asm-generic/int-ll64.h>
5
6 /* copied from linux:include/uapi/linux/types.h */
7 #define __bitwise
8 typedef __u16 __bitwise __le16;
9 typedef __u16 __bitwise __be16;
10 typedef __u32 __bitwise __le32;
11 typedef __u32 __bitwise __be32;
12 typedef __u64 __bitwise __le64;
13 typedef __u64 __bitwise __be64;
14
15 typedef __u16 __bitwise __sum16;
16 typedef __u32 __bitwise __wsum;
17
18 #define __aligned_u64 __u64 __attribute__((aligned(8)))
19 #define __aligned_be64 __be64 __attribute__((aligned(8)))
20 #define __aligned_le64 __le64 __attribute__((aligned(8)))
21
22 #endif /* _UAPI_LINUX_TYPES_H */