1 2 3 4 5 6 7 8 9 10
#include "elfload.h" #include <unistd.h> int main(); __attribute__((__weak__)) void _start(void) { elf_selfreloc(); exit(main()); }