[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r2009 - in /fsf/trunk/libc: ChangeLog stdlib/stdlib.h



Author: eglibc
Date: Wed Apr 18 00:01:41 2007
New Revision: 2009

Log:
Import glibc-mainline for 2007-04-18

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/stdlib/stdlib.h

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Wed Apr 18 00:01:41 2007
@@ -1,3 +1,8 @@
+2007-04-17  Ulrich Drepper  <drepper@xxxxxxxxxx>
+
+	[BZ #4368]
+	* stdlib/stdlib.h: Remove obsolete part of comment for realpath.
+
 2007-04-16  Ulrich Drepper  <drepper@xxxxxxxxxx>
 
 	[BZ #4364]

Modified: fsf/trunk/libc/stdlib/stdlib.h
==============================================================================
--- fsf/trunk/libc/stdlib/stdlib.h (original)
+++ fsf/trunk/libc/stdlib/stdlib.h Wed Apr 18 00:01:41 2007
@@ -747,12 +747,11 @@
 #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