1 2 3 4 5 6 7 8 9 10 11
#ifndef ELF_H #define ELF_H #include <stdint.h> struct Elf { uint8_t magic; }; #endif