1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

__libc_dlopen is now a macro calling __libc_dlopen_mode with the extra parameter RTLD_LAZY. (__libc_dlopen_mode): New prototype.

This commit is contained in:
Ulrich Drepper
2002-11-19 19:27:17 +00:00
parent 2674f2a35b
commit 00a9b51d9a

View 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);