GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / tools / perf / util / include / linux / types.h
blob12de3b8112f97a079841ad37832934d79cc53bce
1 #ifndef _PERF_LINUX_TYPES_H_
2 #define _PERF_LINUX_TYPES_H_
4 #include <asm/types.h>
6 #define DECLARE_BITMAP(name,bits) \
7 unsigned long name[BITS_TO_LONGS(bits)]
9 struct list_head {
10 struct list_head *next, *prev;
13 struct hlist_head {
14 struct hlist_node *first;
17 struct hlist_node {
18 struct hlist_node *next, **pprev;
21 #endif