about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/aix/dl-open.c
blob: 50fd7120c5caccca7a93255bdcc6ef4b3c2121ea (plain) (blame)
1
2
3
4
5
6
7
8
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;
}