diff options
Diffstat (limited to 'tools/perf/util/debug.c')
| -rw-r--r-- | tools/perf/util/debug.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/perf/util/debug.c b/tools/perf/util/debug.c index 3780fe42453b..e55114f0336f 100644 --- a/tools/perf/util/debug.c +++ b/tools/perf/util/debug.c @@ -1,8 +1,6 @@  // SPDX-License-Identifier: GPL-2.0  /* For general debugging purposes */ -#include "../perf.h" -  #include <inttypes.h>  #include <string.h>  #include <stdarg.h> @@ -10,17 +8,18 @@  #include <stdlib.h>  #include <sys/wait.h>  #include <api/debug.h> +#include <linux/kernel.h>  #include <linux/time64.h>  #ifdef HAVE_BACKTRACE_SUPPORT  #include <execinfo.h>  #endif -#include "cache.h"  #include "color.h"  #include "event.h"  #include "debug.h"  #include "print_binary.h" -#include "util.h"  #include "target.h" +#include "ui/helpline.h" +#include "ui/ui.h"  #include <linux/ctype.h>  |