18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * asm-generic/int-l64.h
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Integer declarations for architectures which use "long"
68c2ecf20Sopenharmony_ci * for 64-bit types.
78c2ecf20Sopenharmony_ci */
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci#ifndef _UAPI_ASM_GENERIC_INT_L64_H
108c2ecf20Sopenharmony_ci#define _UAPI_ASM_GENERIC_INT_L64_H
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#include <asm/bitsperlong.h>
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#ifndef __ASSEMBLY__
158c2ecf20Sopenharmony_ci/*
168c2ecf20Sopenharmony_ci * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
178c2ecf20Sopenharmony_ci * header files exported to user space
188c2ecf20Sopenharmony_ci */
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_citypedef __signed__ char __s8;
218c2ecf20Sopenharmony_citypedef unsigned char __u8;
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_citypedef __signed__ short __s16;
248c2ecf20Sopenharmony_citypedef unsigned short __u16;
258c2ecf20Sopenharmony_ci
268c2ecf20Sopenharmony_citypedef __signed__ int __s32;
278c2ecf20Sopenharmony_citypedef unsigned int __u32;
288c2ecf20Sopenharmony_ci
298c2ecf20Sopenharmony_citypedef __signed__ long __s64;
308c2ecf20Sopenharmony_citypedef unsigned long __u64;
318c2ecf20Sopenharmony_ci
328c2ecf20Sopenharmony_ci#endif /* __ASSEMBLY__ */
338c2ecf20Sopenharmony_ci
348c2ecf20Sopenharmony_ci
358c2ecf20Sopenharmony_ci#endif /* _UAPI_ASM_GENERIC_INT_L64_H */
36