| 4942 | } |
| 4943 | |
| 4944 | static void *dlsym(void *handle, const char *name) |
| 4945 | { |
| 4946 | if (dlsym_impl == NULL) |
| 4947 | panic("dl not initialized"); |
| 4948 | if (handle == NULL) |
| 4949 | handle = dldefault; |
| 4950 | return (void *)dlcall((void *)dlsym_impl, handle, name); |
| 4951 | } |
| 4952 | |
| 4953 | static void *dlvsym(void *handle, const char *name, const char *version) |
| 4954 | { |
no outgoing calls
no test coverage detected