| 181 | static void elf_obj_cleanup_globals_cache(elf_file_t); |
| 182 | |
| 183 | static void |
| 184 | link_elf_error(const char *filename, const char *s) |
| 185 | { |
| 186 | if (filename == NULL) |
| 187 | printf("kldload: %s\n", s); |
| 188 | else |
| 189 | printf("kldload: %s: %s\n", filename, s); |
| 190 | } |
| 191 | |
| 192 | static void |
| 193 | link_elf_init(void *arg) |
no test coverage detected