AIX _dl_close implementation.

This commit is contained in:
Ulrich Drepper 2000-04-17 22:13:12 +00:00
parent 25f435284a
commit 0778cbcde4

View File

@ -0,0 +1,9 @@
/* XXX The implementation of dlopen should somehow use the __loadx system
call but how? */
#include <dlfcn.h>
int
__libc_dlclose (void *handle)
{
return 0;
}