AIX _dl_close implementation.
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Apr 2000 22:13:12 +0000 (22:13 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Apr 2000 22:13:12 +0000 (22:13 +0000)
sysdeps/unix/sysv/aix/dl-close.c [new file with mode: 0644]

diff --git a/sysdeps/unix/sysv/aix/dl-close.c b/sysdeps/unix/sysv/aix/dl-close.c
new file mode 100644 (file)
index 0000000..a9a492a
--- /dev/null
@@ -0,0 +1,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;
+}