* stdlib/stdlib.h (realpath): Remove nonnull attribute.

This commit is contained in:
Roland McGrath 2004-12-01 19:54:41 +00:00
parent faef34d020
commit c13bc9621f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-12-01 Jakub Jelinek <jakub@redhat.com>
* stdlib/stdlib.h (realpath): Remove nonnull attribute.
2004-12-01 Roland McGrath <roland@redhat.com>
* sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c):

View File

@ -747,7 +747,7 @@ extern char *canonicalize_file_name (__const char *__name)
ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars, returns the
name in RESOLVED. */
extern char *realpath (__const char *__restrict __name,
char *__restrict __resolved) __THROW __nonnull ((1));
char *__restrict __resolved) __THROW;
#endif