.. | .. |
---|
4 | 4 | * |
---|
5 | 5 | * Builtin help command |
---|
6 | 6 | */ |
---|
7 | | -#include "perf.h" |
---|
| 7 | +#include "util/cache.h" |
---|
8 | 8 | #include "util/config.h" |
---|
| 9 | +#include "util/strbuf.h" |
---|
9 | 10 | #include "builtin.h" |
---|
10 | 11 | #include <subcmd/exec-cmd.h> |
---|
11 | 12 | #include "common-cmds.h" |
---|
.. | .. |
---|
14 | 15 | #include <subcmd/help.h> |
---|
15 | 16 | #include "util/debug.h" |
---|
16 | 17 | #include <linux/kernel.h> |
---|
| 18 | +#include <linux/string.h> |
---|
| 19 | +#include <linux/zalloc.h> |
---|
17 | 20 | #include <errno.h> |
---|
18 | 21 | #include <stdio.h> |
---|
| 22 | +#include <stdlib.h> |
---|
| 23 | +#include <string.h> |
---|
19 | 24 | #include <sys/types.h> |
---|
20 | 25 | #include <sys/stat.h> |
---|
21 | 26 | #include <unistd.h> |
---|