aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/include/linux/types.h
blob: 858a38d084354e63df079bce8184afd011d20084 (plain) (blame)
1
2
3
4
5
6
7
#ifndef _PERF_LINUX_TYPES_H_
#define _PERF_LINUX_TYPES_H_

#define DECLARE_BITMAP(name,bits) \
	unsigned long name[BITS_TO_LONGS(bits)]

#endif