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 000000000000..08db322d8957 --- /dev/null +++ b/tools/perf/config/feature-checks/test-libelf.c | |||
@@ -0,0 +1,8 @@ | |||
1 | #include <libelf.h> | ||
2 | |||
3 | int main(void) | ||
4 | { | ||
5 | Elf *elf = elf_begin(0, ELF_C_READ, 0); | ||
6 | |||
7 | return (long)elf; | ||
8 | } | ||