Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 May 2010 09:29:34 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r207654 - stable/8/lib/libc/stdlib
Message-ID:  <201005050929.o459TYHo007362@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 .



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005050929.o459TYHo007362>