]> sourceware.org Git - glibc.git/commitdiff
__libc_dlopen is now a macro calling __libc_dlopen_mode with the extra parameter...
authorUlrich Drepper <drepper@redhat.com>
Tue, 19 Nov 2002 19:27:17 +0000 (19:27 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 19 Nov 2002 19:27:17 +0000 (19:27 +0000)
include/dlfcn.h

index fca2feb458233dfd55a04cb86c781a6b2ab3098d..fd1c8a96a2f051b82ef49708b5d2af6dc18866ca 100644 (file)
@@ -9,7 +9,8 @@
 extern void *__dlvsym (void *__handle, __const char *__name,
                       __const char *__version);
 
-extern void *__libc_dlopen  (__const char *__name);
+#define __libc_dlopen(name) __libc_dlopen_mode (name, RTLD_LAZY)
+extern void *__libc_dlopen_mode  (__const char *__name, int __mode);
 extern void *__libc_dlsym   (void *__map, __const char *__name);
 extern int   __libc_dlclose (void *__map);
 
This page took 0.043695 seconds and 5 git commands to generate.