| 107 | |
| 108 | |
| 109 | static int iself(const void *input) |
| 110 | { |
| 111 | const Elf32_Ehdr *ehdr = input; |
| 112 | return !memcmp(ehdr->e_ident, ELFMAG, 4); |
| 113 | } |
| 114 | |
| 115 | /* Get the ident array, so we can figure out |
| 116 | * endian-ness, word size, and in future other useful |
no test coverage detected