2 * asm-generic/int-l64.h
4 * Integer declarations for architectures which use "long"
8 #ifndef _ASM_GENERIC_INT_L64_H
9 #define _ASM_GENERIC_INT_L64_H
13 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
14 * header files exported to user space
17 typedef __signed__ char __s8;
18 typedef unsigned char __u8;
20 typedef __signed__ short __s16;
21 typedef unsigned short __u16;
23 typedef __signed__ int __s32;
24 typedef unsigned int __u32;
26 typedef __signed__ long __s64;
27 typedef unsigned long __u64;
29 #endif /* __ASSEMBLY__ */
35 typedef signed char s8;
36 typedef unsigned char u8;
38 typedef signed short s16;
39 typedef unsigned short u16;
41 typedef signed int s32;
42 typedef unsigned int u32;
44 typedef signed long s64;
45 typedef unsigned long u64;
48 #define U8_C(x) x ## U
50 #define U16_C(x) x ## U
52 #define U32_C(x) x ## U
53 #define S64_C(x) x ## L
54 #define U64_C(x) x ## UL
56 #else /* __ASSEMBLY__ */
67 #endif /* __ASSEMBLY__ */
69 #endif /* __KERNEL__ */
71 #endif /* _ASM_GENERIC_INT_L64_H */