MCPcopy Create free account
hub / github.com/GJDuck/e9patch / dlsym

Function dlsym

examples/stdlib.c:4944–4951  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4942}
4943
4944static 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
4953static void *dlvsym(void *handle, const char *name, const char *version)
4954{

Callers 2

initFunction · 0.85
openPluginFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected