1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-05-07 07:21:47 +03:00
glibc/sysdeps/unix/sysv/aix/dl-close.c
2000-04-17 23:11:32 +00:00

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;
}