diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-11-25 20:16:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-11-25 20:16:31 +0000 |
commit | fda81cf586c87af042fc31bda774689c14c0cec4 (patch) | |
tree | 47dff7f2573b7b15a4e2aaca47b339a401098f2f /dlfcn | |
parent | 55ed582146289abeb2fc43af20be3caef05d5e4c (diff) | |
download | glibc-fda81cf586c87af042fc31bda774689c14c0cec4.tar.gz glibc-fda81cf586c87af042fc31bda774689c14c0cec4.tar.xz glibc-fda81cf586c87af042fc31bda774689c14c0cec4.zip |
Update.
* dlfcn/dlfcn.h: Remove nonnull attribute from dlopen.
Diffstat (limited to 'dlfcn')
-rw-r--r-- | dlfcn/dlfcn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dlfcn/dlfcn.h b/dlfcn/dlfcn.h index c3943b3250..42c25b8b63 100644 --- a/dlfcn/dlfcn.h +++ b/dlfcn/dlfcn.h @@ -54,7 +54,7 @@ __BEGIN_DECLS /* Open the shared object FILE and map it in; return a handle that can be 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'. The handle cannot be used again after calling `dlclose'. */ |