svn commit: r207654 - stable/8/lib/libc/stdlib
Konstantin Belousov
kib at FreeBSD.org
Wed May 5 09:29:34 UTC 2010
Author: kib
Date: Wed May 5 09:29:34 2010
New Revision: 207654
URL: http://svn.freebsd.org/changeset/base/207654
Log:
MFC r207009:
C language does not has references, it provides pointers.
Modified:
stable/8/lib/libc/stdlib/realpath.3
Directory Properties:
stable/8/lib/libc/ (props changed)
stable/8/lib/libc/stdtime/ (props changed)
Modified: stable/8/lib/libc/stdlib/realpath.3
==============================================================================
--- stable/8/lib/libc/stdlib/realpath.3 Wed May 5 09:01:15 2010 (r207653)
+++ stable/8/lib/libc/stdlib/realpath.3 Wed May 5 09:29:34 2010 (r207654)
@@ -56,13 +56,13 @@ and
in
.Fa pathname ,
and copies the resulting absolute pathname into
-the memory referenced by
+the memory pointed to by
.Fa resolved_path .
The
.Fa resolved_path
argument
.Em must
-refer to a buffer capable of storing at least
+point to a buffer capable of storing at least
.Dv PATH_MAX
characters, or be
.Dv NULL .
More information about the svn-src-all
mailing list