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/builtin-help.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/builtin-help.c')
-rw-r--r-- | Documentation/perf_counter/builtin-help.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/perf_counter/builtin-help.c b/Documentation/perf_counter/builtin-help.c index a136d619db37..6616de0ef053 100644 --- a/Documentation/perf_counter/builtin-help.c +++ b/Documentation/perf_counter/builtin-help.c @@ -3,13 +3,13 @@ * * Builtin help command */ -#include "cache.h" +#include "util/cache.h" #include "builtin.h" -#include "exec_cmd.h" +#include "util/exec_cmd.h" #include "common-cmds.h" -#include "parse-options.h" -#include "run-command.h" -#include "help.h" +#include "util/parse-options.h" +#include "util/run-command.h" +#include "util/help.h" static struct man_viewer_list { struct man_viewer_list *next; |