]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2007-04-17 Ulrich Drepper <drepper@redhat.com>
authorJakub Jelinek <jakub@redhat.com>
Thu, 12 Jul 2007 15:10:21 +0000 (15:10 +0000)
committerJakub Jelinek <jakub@redhat.com>
Thu, 12 Jul 2007 15:10:21 +0000 (15:10 +0000)
[BZ #4368]
* stdlib/stdlib.h: Remove obsolete part of comment for realpath.

ChangeLog
stdlib/stdlib.h

index f9157dcf3438151a455f47908898d24947c6f014..29aa09cf7d1692ca6c52c5d67e3e5600ba751ee9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        [BZ #4364]
index c3fc14562eba3ae13c32c168c3b84891b45886e2..85c701af71617eda556b245b0063bf172af403e3 100644 (file)
@@ -748,12 +748,11 @@ extern char *canonicalize_file_name (__const char *__name)
 #endif
 
 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
-/* Return the canonical absolute name of file NAME.  The last file name
-   component need not exist, and may be a symlink to a nonexistent file.
-   If RESOLVED is null, the result is malloc'd; otherwise, if the canonical
-   name is PATH_MAX chars or more, returns null with `errno' set to
-   ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars, returns the
-   name in RESOLVED.  */
+/* Return the canonical absolute name of file NAME.  If RESOLVED is
+   null, the result is malloc'd; otherwise, if the canonical name is
+   PATH_MAX chars or more, returns null with `errno' set to
+   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 __wur;
 #endif