Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / include / uapi / asm-generic / int-l64.h
blobed8bcd99c34d78f428f4ab39b71ada031644e486
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3 * asm-generic/int-l64.h
5 * Integer declarations for architectures which use "long"
6 * for 64-bit types.
7 */
9 #ifndef _UAPI_ASM_GENERIC_INT_L64_H
10 #define _UAPI_ASM_GENERIC_INT_L64_H
12 #include <asm/bitsperlong.h>
14 #ifndef __ASSEMBLY__
16 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
17 * header files exported to user space
20 typedef __signed__ char __s8;
21 typedef unsigned char __u8;
23 typedef __signed__ short __s16;
24 typedef unsigned short __u16;
26 typedef __signed__ int __s32;
27 typedef unsigned int __u32;
29 typedef __signed__ long __s64;
30 typedef unsigned long __u64;
32 #endif /* __ASSEMBLY__ */
35 #endif /* _UAPI_ASM_GENERIC_INT_L64_H */