Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / include / uapi / asm-generic / int-l64.h
blob978f21cae2f4c99c49da4d3b2eb79588bac9b431
1 /*
2 * asm-generic/int-l64.h
4 * Integer declarations for architectures which use "long"
5 * for 64-bit types.
6 */
8 #ifndef _UAPI_ASM_GENERIC_INT_L64_H
9 #define _UAPI_ASM_GENERIC_INT_L64_H
11 #include <asm/bitsperlong.h>
13 #ifndef __ASSEMBLY__
15 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
16 * header files exported to user space
19 typedef __signed__ char __s8;
20 typedef unsigned char __u8;
22 typedef __signed__ short __s16;
23 typedef unsigned short __u16;
25 typedef __signed__ int __s32;
26 typedef unsigned int __u32;
28 typedef __signed__ long __s64;
29 typedef unsigned long __u64;
31 #endif /* __ASSEMBLY__ */
34 #endif /* _UAPI_ASM_GENERIC_INT_L64_H */