AIX _dl_open implementation.

This commit is contained in:
Ulrich Drepper 2000-04-17 22:14:50 +00:00
parent 0778cbcde4
commit b4f994c66b

View File

@ -0,0 +1,9 @@
/* 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;
}