Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fd20e811 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo
Browse files

perf tools: Including missing inttypes.h header

Needed to use the PRI[xu](32,64) formatting macros.

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-wkbho8kaw24q67dd11q0j39f@git.kernel.org


Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent b640985f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
#include <inttypes.h>
#include <stdio.h>
#include <unistd.h>
#include <linux/types.h>
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
 * numa: Simulate NUMA-sensitive workload and measure their NUMA performance
 */

#include <inttypes.h>
/* For the CLR_() macros */
#include <pthread.h>

+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
 *   Dick Fowles <fowles@inreach.com>
 *   Joe Mario <jmario@redhat.com>
 */
#include <inttypes.h>
#include <linux/compiler.h>
#include <linux/kernel.h>
#include <linux/stringify.h>
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
#include "util/data.h"
#include "util/config.h"

#include <inttypes.h>
#include <stdlib.h>
#include <math.h>

+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
 *
 * Released under the GPL v2. (and only v2, not any later version)
 */
#include <inttypes.h>
#include "builtin.h"
#include <linux/compiler.h>
#include <subcmd/parse-options.h>
Loading