From: Ulrich Drepper Date: Thu, 25 Nov 2004 20:16:31 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~17150 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fda81cf586c87af042fc31bda774689c14c0cec4;p=external%2Fglibc.git Update. * dlfcn/dlfcn.h: Remove nonnull attribute from dlopen. --- diff --git a/ChangeLog b/ChangeLog index f96c670..8b1a345 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-11-25 Ulrich Drepper + * dlfcn/dlfcn.h: Remove nonnull attribute from dlopen. + * posix/confstr.c (confstr): Return appropriate strings for _CS_LFS_LINTFLAGS, _CS_LFS64_CFLAGS, and _CS_LFS64_LINTFLAGS. diff --git a/dlfcn/dlfcn.h b/dlfcn/dlfcn.h index c3943b3..42c25b8 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'. */