about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/aix/dl-close.c
blob: a9a492a9c744d912c41b1b5faef855a810278523 (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>

int
__libc_dlclose (void *handle)
{
  return 0;
}