summaryrefslogtreecommitdiff
path: root/tools/perf/config/feature-checks/test-libelf-mmap.c
blob: 1c648159c705dbc7d8d9de521c908eb4fe313655 (plain)
1
2
3
4
5
6
7
#include <libelf.h>
#
int main(void)
{
	Elf *elf = elf_begin(0, ELF_C_READ_MMAP, 0);
	return (long)elf;
}