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>
This commit is contained in:
Ingo Molnar 2009-04-27 08:02:14 +02:00
commit 148be2c15d
31 changed files with 45 additions and 46 deletions

View file

@ -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;