mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
Update.
* dlfcn/dlfcn.h: Remove nonnull attribute from dlopen.
This commit is contained in:
parent
55ed582146
commit
fda81cf586
@ -1,5 +1,7 @@
|
|||||||
2004-11-25 Ulrich Drepper <drepper@redhat.com>
|
2004-11-25 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* dlfcn/dlfcn.h: Remove nonnull attribute from dlopen.
|
||||||
|
|
||||||
* posix/confstr.c (confstr): Return appropriate strings for
|
* posix/confstr.c (confstr): Return appropriate strings for
|
||||||
_CS_LFS_LINTFLAGS, _CS_LFS64_CFLAGS, and _CS_LFS64_LINTFLAGS.
|
_CS_LFS_LINTFLAGS, _CS_LFS64_CFLAGS, and _CS_LFS64_LINTFLAGS.
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ __BEGIN_DECLS
|
|||||||
|
|
||||||
/* Open the shared object FILE and map it in; return a handle that can be
|
/* Open the shared object FILE and map it in; return a handle that can be
|
||||||
passed to `dlsym' to get symbol values from it. */
|
passed to `dlsym' to get symbol values from it. */
|
||||||
extern void *dlopen (__const char *__file, int __mode) __THROW __nonnull ((1));
|
extern void *dlopen (__const char *__file, int __mode) __THROW;
|
||||||
|
|
||||||
/* Unmap and close a shared object opened by `dlopen'.
|
/* Unmap and close a shared object opened by `dlopen'.
|
||||||
The handle cannot be used again after calling `dlclose'. */
|
The handle cannot be used again after calling `dlclose'. */
|
||||||
|
Loading…
Reference in New Issue
Block a user