]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
AIX __libc_dlsym implementation.
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Apr 2000 22:15:47 +0000 (22:15 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Apr 2000 22:15:47 +0000 (22:15 +0000)
sysdeps/unix/sysv/aix/dl-sym.c [new file with mode: 0644]

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