1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2007-04-17  Ulrich Drepper  <drepper@redhat.com>
	[BZ #4368]
	* stdlib/stdlib.h: Remove obsolete part of comment for realpath.
This commit is contained in:
Ulrich Drepper
2007-04-17 18:36:00 +00:00
parent faf3ad6937
commit b7674b1107
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2007-04-17 Ulrich Drepper <drepper@redhat.com>
[BZ #4368]
* stdlib/stdlib.h: Remove obsolete part of comment for realpath.
2007-04-16 Ulrich Drepper <drepper@redhat.com> 2007-04-16 Ulrich Drepper <drepper@redhat.com>
[BZ #4364] [BZ #4364]

View File

@ -747,12 +747,11 @@ extern char *canonicalize_file_name (__const char *__name)
#endif #endif
#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
/* Return the canonical absolute name of file NAME. The last file name /* Return the canonical absolute name of file NAME. If RESOLVED is
component need not exist, and may be a symlink to a nonexistent file. null, the result is malloc'd; otherwise, if the canonical name is
If RESOLVED is null, the result is malloc'd; otherwise, if the canonical PATH_MAX chars or more, returns null with `errno' set to
name is PATH_MAX chars or more, returns null with `errno' set to ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars,
ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars, returns the returns the name in RESOLVED. */
name in RESOLVED. */
extern char *realpath (__const char *__restrict __name, extern char *realpath (__const char *__restrict __name,
char *__restrict __resolved) __THROW __wur; char *__restrict __resolved) __THROW __wur;
#endif #endif