Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
ldso
/
dlsym.c
blob: c0f50e923b857d5e359fce641f0c6e0e77d81245 [
file
] [
log
] [
blame
]
#include
<dlfcn.h>
void
*
__dlsym
(
void
*
restrict
,
const
char
*
restrict
,
void
*
restrict
);
void
*
dlsym
(
void
*
restrict p
,
const
char
*
restrict s
)
{
return
__dlsym
(
p
,
s
,
0
);
}