blob: 7e10ba10b05f555d4a74669c096aa4faf21715ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* XXX The implementation of dlopen should somehow use the __loadx system
call but how? */
#include <dlfcn.h>
void *
__libc_dlsym (void *handle, const char *name)
{
return (void *) 0;
}
|