perf tools: Protect header files with a consistent style
[safe/jmp/linux-2.6] / tools / perf / util / debug.h
1 /* For debugging general purposes */
2 #ifndef __PERF_DEBUG_H
3 #define __PERF_DEBUG_H
4
5 extern int verbose;
6 extern int dump_trace;
7
8 int eprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
9 int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
10 void trace_event(event_t *event);
11
12 #endif  /* __PERF_DEBUG_H */