• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
1#ifndef __PERF_TYPES_H
2#define __PERF_TYPES_H
3
4/*
5 * We define u64 as unsigned long long for every architecture
6 * so that we can print it with %Lx without getting warnings.
7 */
8typedef unsigned long long u64;
9typedef signed long long   s64;
10typedef unsigned int	   u32;
11typedef signed int	   s32;
12typedef unsigned short	   u16;
13typedef signed short	   s16;
14typedef unsigned char	   u8;
15typedef signed char	   s8;
16
17#endif /* __PERF_TYPES_H */
18