perf stat: Add missing counts.h

It is getting this via evsel.h, that don't strictly need counts.h, just
forward declarations for some structs, so add it here before we remove
it from there.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-jwcbm9gv9llloe3he5qkdefs@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2019-08-21 14:02:05 -03:00
parent e4aec1b1bd
commit bfc49182c6
2 changed files with 2 additions and 0 deletions

View file

@ -4,6 +4,7 @@
#include <linux/time64.h>
#include <math.h>
#include "color.h"
#include "counts.h"
#include "evlist.h"
#include "evsel.h"
#include "stat.h"

View file

@ -2,6 +2,7 @@
#include <errno.h>
#include <inttypes.h>
#include <math.h>
#include "counts.h"
#include "stat.h"
#include "evlist.h"
#include "evsel.h"