build: fix kernel 5.4 on macos
[openwrt/staging/chunkeey.git] / tools / include / asm / types.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3 * asm-generic/int-ll64.h
4 *
5 * Integer declarations for architectures which use "long long"
6 * for 64-bit types.
7 */
8
9 #ifndef _ASM_GENERIC_INT_LL64_H
10 #define _ASM_GENERIC_INT_LL64_H
11
12 typedef __signed__ char __s8;
13
14 typedef __signed__ short __s16;
15
16 typedef __signed__ int __s32;
17
18 #ifdef __GNUC__
19 __extension__ typedef __signed__ long long __s64;
20 #else
21 typedef __signed__ long long __s64;
22 #endif
23
24 #endif /* _ASM_GENERIC_INT_LL64_H */