brintos

brintos / linux-shallow public Read only

0
0
Text · 291 B · 4224c29 Raw
13 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef ARCH_PERF_COMMON_H3#define ARCH_PERF_COMMON_H4 5#include <stdbool.h>6 7struct perf_env;8 9int perf_env__lookup_objdump(struct perf_env *env, char **path);10bool perf_env__single_address_space(struct perf_env *env);11 12#endif /* ARCH_PERF_COMMON_H */13