0001
0002
0003
0004
0005
0006
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
0017
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
0033
0034
0035 #endif