Sign in
mojo
/
mojo
/
HEAD
/
.
/
fusl
/
src
/
ldso
/
dlsym.c
blob: 62c1cddd5ec4eeee4408ee97a62ed1862c317ff2 [
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
);
}