diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-04-27 08:02:14 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-27 09:05:08 +0200 |
commit | 148be2c15d4a866fbc7a8f55342e4fd4de73be61 (patch) | |
tree | a99f8c85552166f187a233ce29eb442f27fe620d /Documentation/perf_counter/perf.c | |
parent | f1f9b3b1795da8625e0e6096813c9d18d4a344ce (diff) | |
download | lwn-148be2c15d4a866fbc7a8f55342e4fd4de73be61.tar.gz lwn-148be2c15d4a866fbc7a8f55342e4fd4de73be61.zip |
perf_counter tools: move helper library to util/*
Clean up the top level directory a bit by moving all the helper libraries
to util/*.[ch].
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/perf_counter/perf.c')
-rw-r--r-- | Documentation/perf_counter/perf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/perf_counter/perf.c b/Documentation/perf_counter/perf.c index 8d6faecdc15d..594d270be390 100644 --- a/Documentation/perf_counter/perf.c +++ b/Documentation/perf_counter/perf.c @@ -1,8 +1,8 @@ #include "builtin.h" -#include "exec_cmd.h" -#include "cache.h" -#include "quote.h" -#include "run-command.h" +#include "util/exec_cmd.h" +#include "util/cache.h" +#include "util/quote.h" +#include "util/run-command.h" const char perf_usage_string[] = "perf [--version] [--help] COMMAND [ARGS]"; |