forked from rrcarlosr/Jetpack
9 lines
106 B
C
9 lines
106 B
C
|
#include <libelf.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
Elf *elf = elf_begin(0, ELF_C_READ_MMAP, 0);
|
||
|
|
||
|
return (long)elf;
|
||
|
}
|