mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
b6b5574b80
And fixup the fallout of c files not building due to now missing headers. 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-sw8k3kpla98pr3rqypbjk9hf@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
12 lines
297 B
C
12 lines
297 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ARCH_PERF_COMMON_H
|
|
#define ARCH_PERF_COMMON_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct perf_env;
|
|
|
|
int perf_env__lookup_objdump(struct perf_env *env, const char **path);
|
|
bool perf_env__single_address_space(struct perf_env *env);
|
|
|
|
#endif /* ARCH_PERF_COMMON_H */
|