glibc/sysdeps/unix/sysv/aix/dl-sym.c
2000-04-17 23:11:32 +00:00

10 lines
193 B
C

/* XXX The implementation of dlopen should somehow use the __loadx system
call but how? */
#include <dlfcn.h>
void *
__libc_dlsym (void *handle, const char *name)
{
return (void *) 0;
}