diff options
Diffstat (limited to 'tools/perf/config/feature-checks/test-libelf.c')
| -rw-r--r-- | tools/perf/config/feature-checks/test-libelf.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-libelf.c b/tools/perf/config/feature-checks/test-libelf.c new file mode 100644 index 00000000000..08db322d895 --- /dev/null +++ b/tools/perf/config/feature-checks/test-libelf.c @@ -0,0 +1,8 @@ +#include <libelf.h> + +int main(void) +{ +	Elf *elf = elf_begin(0, ELF_C_READ, 0); + +	return (long)elf; +}  | 
