Go to the documentation of this file.
7 #ifndef _ASM_GENERIC_INT_L64_H
8 #define _ASM_GENERIC_INT_L64_H
15 typedef signed char s8;
16 typedef unsigned char u8;
18 typedef signed short s16;
19 typedef unsigned short u16;
21 typedef signed int s32;
22 typedef unsigned int u32;
24 typedef signed long s64;
25 typedef unsigned long u64;
28 #define U8_C(x) x ## U
30 #define U16_C(x) x ## U
32 #define U32_C(x) x ## U
33 #define S64_C(x) x ## L
34 #define U64_C(x) x ## UL