Date: Wed, 21 Apr 2010 19:35:56 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r207009 - head/lib/libc/stdlib Message-ID: <201004211935.o3LJZuBh047806@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kib Date: Wed Apr 21 19:35:56 2010 New Revision: 207009 URL: http://svn.freebsd.org/changeset/base/207009 Log: C language does not has references, it provides pointers. Suggested by: bde MFC after: 2 weeks Modified: head/lib/libc/stdlib/realpath.3 Modified: head/lib/libc/stdlib/realpath.3 ============================================================================== --- head/lib/libc/stdlib/realpath.3 Wed Apr 21 19:32:00 2010 (r207008) +++ head/lib/libc/stdlib/realpath.3 Wed Apr 21 19:35:56 2010 (r207009) @@ -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 .
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004211935.o3LJZuBh047806>