Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 /*
0003  * asm-generic/int-l64.h
0004  *
0005  * Integer declarations for architectures which use "long"
0006  * for 64-bit types.
0007  */
0008 
0009 #ifndef _UAPI_ASM_GENERIC_INT_L64_H
0010 #define _UAPI_ASM_GENERIC_INT_L64_H
0011 
0012 #include <asm/bitsperlong.h>
0013 
0014 #ifndef __ASSEMBLY__
0015 /*
0016  * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
0017  * header files exported to user space
0018  */
0019 
0020 typedef __signed__ char __s8;
0021 typedef unsigned char __u8;
0022 
0023 typedef __signed__ short __s16;
0024 typedef unsigned short __u16;
0025 
0026 typedef __signed__ int __s32;
0027 typedef unsigned int __u32;
0028 
0029 typedef __signed__ long __s64;
0030 typedef unsigned long __u64;
0031 
0032 #endif /* __ASSEMBLY__ */
0033 
0034 
0035 #endif /* _UAPI_ASM_GENERIC_INT_L64_H */