Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 161291396e76e0832c08f617eb9bd364d1648148 authored by Linus Torvalds on 11 October 2009, 21:43:56 UTC
Linux 2.6.32-rc4
Tip revision: 1612913
types.h
#ifndef _PERF_TYPES_H
#define _PERF_TYPES_H

/*
 * We define u64 as unsigned long long for every architecture
 * so that we can print it with %Lx without getting warnings.
 */
typedef unsigned long long u64;
typedef signed long long   s64;
typedef unsigned int	   u32;
typedef signed int	   s32;
typedef unsigned short	   u16;
typedef signed short	   s16;
typedef unsigned char	   u8;
typedef signed char	   s8;

#endif /* _PERF_TYPES_H */
back to top