mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 11:00:07 +00:00
10 lines
180 B
C
10 lines
180 B
C
|
/* XXX The implementation of dlopen should somehow use the __loadx system
|
||
|
call but how? */
|
||
|
#include <dlfcn.h>
|
||
|
|
||
|
void *
|
||
|
__libc_dlopen (const char *file)
|
||
|
{
|
||
|
return (void *) 0;
|
||
|
}
|