| 2313 | return ELF32_ST_BIND(symbol->st_info); |
| 2314 | } |
| 2315 | int ElfType(const ElfW(Sym) * symbol) { |
| 2316 | return ELF32_ST_TYPE(symbol->st_info); |
| 2317 | } |
| 2318 | #elif __WORDSIZE == 64 |
| 2319 | const int kElfClass = ELFCLASS64; |
| 2320 | int ElfBind(const ElfW(Sym) * symbol) { |