1 /* SPDX-License-Identifier: GPL-2.0 */
3 * asm-generic/int-ll64.h
5 * Integer declarations for architectures which use "long long"
9 #ifndef _ASM_GENERIC_INT_LL64_H
10 #define _ASM_GENERIC_INT_LL64_H
14 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
15 * header files exported to user space
18 typedef __signed__ char __s8;
19 typedef unsigned char __u8;
21 typedef __signed__ short __s16;
22 typedef unsigned short __u16;
24 typedef __signed__ int __s32;
25 typedef unsigned int __u32;
28 __extension__ typedef __signed__ long long __s64;
29 __extension__ typedef unsigned long long __u64;
31 typedef __signed__ long long __s64;
32 typedef unsigned long long __u64;
44 #endif /* __ASSEMBLY__ */
47 #endif /* _ASM_GENERIC_INT_LL64_H */