diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-09-11 15:50:26 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-09-13 14:49:16 +0200 |
commit | c23c2a0f236601c635d9a9d18d7993641e72aa8c (patch) | |
tree | 914f529f989ac6ae336ef6bf62ef6216a6d8dab8 /tools/perf/util/zlib.c | |
parent | perf config: Allow creating empty config set for config file autogeneration (diff) | |
download | linux-c23c2a0f236601c635d9a9d18d7993641e72aa8c.tar.xz linux-c23c2a0f236601c635d9a9d18d7993641e72aa8c.zip |
perf tools: Make copyfile_offset() static
There are no usage outside util.c and this is the only remaining reason
for fcntl.h to be included in util.h, to get the loff_t definition in
Alpine Linux, so make it static.
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-2dzlsao7k6ihozs5karw6kpx@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/zlib.c')
-rw-r--r-- | tools/perf/util/zlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/zlib.c b/tools/perf/util/zlib.c index 1329d843eb7b..7c1175310a12 100644 --- a/tools/perf/util/zlib.c +++ b/tools/perf/util/zlib.c @@ -1,3 +1,4 @@ +#include <fcntl.h> #include <stdio.h> #include <unistd.h> #include <sys/stat.h> |