]> git.karo-electronics.de Git - linux-beck.git/commitdiff
perf strbuf: Add missing headers
authorArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 7 Jul 2016 14:06:58 +0000 (11:06 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 12 Jul 2016 18:19:55 +0000 (15:19 -0300)
We were only indirectly and by luck getting types, etc needed for this
file, fix it.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-gr8ejvzm7ojk6zwpeplyx9zu@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/strbuf.c
tools/perf/util/strbuf.h

index f95f682aa2b2c3fd04b20e96e652e5696895a4b4..817593908d47a3d1ea27eb73080b94852e88d990 100644 (file)
@@ -1,5 +1,5 @@
 #include "debug.h"
-#include "cache.h"
+#include "util.h"
 #include <linux/kernel.h>
 
 int prefixcmp(const char *str, const char *prefix)
index 54b409297d4a0cfe7e82e3e90041dfeee4311490..b268a6648a5d6ae0733a0a87a73ffaf2ae50f4f1 100644 (file)
@@ -40,6 +40,9 @@
 
 #include <assert.h>
 #include <stdarg.h>
+#include <stddef.h>
+#include <string.h>
+#include <sys/types.h>
 
 extern char strbuf_slopbuf[];
 struct strbuf {