test-libelf.c 101 B

12345678
  1. #include <libelf.h>
  2. int main(void)
  3. {
  4. Elf *elf = elf_begin(0, ELF_C_READ, 0);
  5. return (long)elf;
  6. }