2 Calculate the size of an ELF file on disk based on the information in its header
8 Calculation using the values also reported by readelf -h:
9 Start of section headers e_shoff 124728
10 Size of section headers e_shentsize 64
11 Number of section headers e_shnum 29
13 e_shoff + ( e_shentsize * e_shnum ) = 126584
19 unsigned long get_elf_size(const char *fname
);
21 #endif /* ELFSIZE_H */