| 1463 | } |
| 1464 | |
| 1465 | static int |
| 1466 | relocate_file(elf_file_t ef) |
| 1467 | { |
| 1468 | int error; |
| 1469 | |
| 1470 | error = relocate_file1(ef, elf_lookup, elf_reloc, false); |
| 1471 | if (error == 0) |
| 1472 | error = relocate_file1(ef, elf_lookup, elf_reloc, true); |
| 1473 | return (error); |
| 1474 | } |
| 1475 | |
| 1476 | /* |
| 1477 | * Hash function for symbol table lookup. Don't even think about changing |
no test coverage detected