glibc/sysdeps/unix/sysv/aix/dl-open.c

10 lines
180 B
C
Raw Normal View History

2000-04-18 01:11:32 +02:00
/* 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;
}