summaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-help.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2017-04-19 20:57:47 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-04-24 13:43:33 -0300
commit7a8ef4c4b5fd5c578da4dadbcb1c5da650426c74 (patch)
tree84e400a1a819a9ff044fe4ca8eb196ab35cb490b /tools/perf/builtin-help.c
parenta3b70b3bb34296a63b43614f13991111eccbb44a (diff)
downloadlinux-7a8ef4c4b5fd5c578da4dadbcb1c5da650426c74.tar.gz
linux-7a8ef4c4b5fd5c578da4dadbcb1c5da650426c74.tar.xz
perf tools: Remove string.h, unistd.h and sys/stat.h from util.h
Not needed in this header, added to the places that need FILE, putchar(), access() and a few other prototypes. Link: http://lkml.kernel.org/n/tip-xxtdsl6nsna82j7puwbdjqhs@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-help.c')
-rw-r--r--tools/perf/builtin-help.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/builtin-help.c b/tools/perf/builtin-help.c
index 7bde2f59dac2..492f8e14ab09 100644
--- a/tools/perf/builtin-help.c
+++ b/tools/perf/builtin-help.c
@@ -14,6 +14,10 @@
#include "util/debug.h"
#include <linux/kernel.h>
#include <errno.h>
+#include <stdio.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
static struct man_viewer_list {
struct man_viewer_list *next;