mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 19:10:06 +00:00
10 lines
193 B
C
10 lines
193 B
C
/* 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;
|
|
}
|