5 * We define u64 as unsigned long long for every architecture
6 * so that we can print it with %Lx without getting warnings.
8 typedef unsigned long long u64
;
9 typedef signed long long s64
;
10 typedef unsigned int u32
;
11 typedef signed int s32
;
12 typedef unsigned short u16
;
13 typedef signed short s16
;
14 typedef unsigned char u8
;
15 typedef signed char s8
;
17 #endif /* _PERF_TYPES_H */