Compare the string KEY to the link B, for bsearch. */
| 975 | static int |
| 976 | bsearch_linkcmp(void const *key, void const *b) |
| 977 | { |
| 978 | struct link const *m = b; |
| 979 | return strcmp(key, m->l_linkname); |
| 980 | } |
| 981 | |
| 982 | /* Make the links specified by the Link lines. */ |
| 983 | static void |
| 984 | make_links(void) |
| 985 | { |
nothing calls this directly
no outgoing calls
no test coverage detected