blob: 2c3ef81affe254c9f3856ac739da10c1a09ae6aa [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001// SPDX-License-Identifier: GPL-2.0
2#include <libelf.h>
3
4int main(void)
5{
6 Elf *elf = elf_begin(0, ELF_C_READ_MMAP, 0);
7
8 return (long)elf;
9}