From: Ulrich Drepper Date: Mon, 17 Apr 2000 22:15:47 +0000 (+0000) Subject: AIX __libc_dlsym implementation. X-Git-Tag: glibc-2.16-ports-before-merge~2463 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d4f87b48e3a97d61eca7ab383d90792f081e84a;p=thirdparty%2Fglibc.git AIX __libc_dlsym implementation. --- diff --git a/sysdeps/unix/sysv/aix/dl-sym.c b/sysdeps/unix/sysv/aix/dl-sym.c new file mode 100644 index 00000000000..7e10ba10b05 --- /dev/null +++ b/sysdeps/unix/sysv/aix/dl-sym.c @@ -0,0 +1,9 @@ +/* XXX The implementation of dlopen should somehow use the __loadx system + call but how? */ +#include + +void * +__libc_dlsym (void *handle, const char *name) +{ + return (void *) 0; +}