mirror of https://git.musl-libc.org/git/musl
3 changed files with 23 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
#include <dlfcn.h> |
|||
|
|||
int __dlinfo(void *, int, void *); |
|||
|
|||
int dlinfo(void *dso, int req, void *res) |
|||
{ |
|||
return __dlinfo(dso, req, res); |
|||
} |
|||
Loading…
Reference in new issue