mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 13:20:06 +00:00
10 lines
165 B
C
10 lines
165 B
C
/* XXX The implementation of dlopen should somehow use the __loadx system
|
|
call but how? */
|
|
#include <dlfcn.h>
|
|
|
|
int
|
|
__libc_dlclose (void *handle)
|
|
{
|
|
return 0;
|
|
}
|