aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-07-12 15:10:21 +0000
committerJakub Jelinek <jakub@redhat.com>2007-07-12 15:10:21 +0000
commit9432bd85ddf720fa564183dc0282b57ab5227224 (patch)
tree45b2081383a20f794d1bb6c97bcf2ff7879a623f
parent5c9d44154730c1e2d8b32339f4430e9a616eb298 (diff)
downloadglibc-9432bd85ddf720fa564183dc0282b57ab5227224.tar
glibc-9432bd85ddf720fa564183dc0282b57ab5227224.tar.gz
glibc-9432bd85ddf720fa564183dc0282b57ab5227224.tar.bz2
glibc-9432bd85ddf720fa564183dc0282b57ab5227224.zip
2007-04-17 Ulrich Drepper <drepper@redhat.com>
[BZ #4368] * stdlib/stdlib.h: Remove obsolete part of comment for realpath.
-rw-r--r--ChangeLog5
-rw-r--r--stdlib/stdlib.h11
2 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index f9157dcf34..29aa09cf7d 100644
--- 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]
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index c3fc14562e..85c701af71 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -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