162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * asm-generic/int-l64.h
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * Integer declarations for architectures which use "long"
662306a36Sopenharmony_ci * for 64-bit types.
762306a36Sopenharmony_ci */
862306a36Sopenharmony_ci
962306a36Sopenharmony_ci#ifndef _UAPI_ASM_GENERIC_INT_L64_H
1062306a36Sopenharmony_ci#define _UAPI_ASM_GENERIC_INT_L64_H
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#include <asm/bitsperlong.h>
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_ci#ifndef __ASSEMBLY__
1562306a36Sopenharmony_ci/*
1662306a36Sopenharmony_ci * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
1762306a36Sopenharmony_ci * header files exported to user space
1862306a36Sopenharmony_ci */
1962306a36Sopenharmony_ci
2062306a36Sopenharmony_citypedef __signed__ char __s8;
2162306a36Sopenharmony_citypedef unsigned char __u8;
2262306a36Sopenharmony_ci
2362306a36Sopenharmony_citypedef __signed__ short __s16;
2462306a36Sopenharmony_citypedef unsigned short __u16;
2562306a36Sopenharmony_ci
2662306a36Sopenharmony_citypedef __signed__ int __s32;
2762306a36Sopenharmony_citypedef unsigned int __u32;
2862306a36Sopenharmony_ci
2962306a36Sopenharmony_citypedef __signed__ long __s64;
3062306a36Sopenharmony_citypedef unsigned long __u64;
3162306a36Sopenharmony_ci
3262306a36Sopenharmony_ci#endif /* __ASSEMBLY__ */
3362306a36Sopenharmony_ci
3462306a36Sopenharmony_ci
3562306a36Sopenharmony_ci#endif /* _UAPI_ASM_GENERIC_INT_L64_H */
36