diff options
author | kib <kib@FreeBSD.org> | 2010-04-21 19:35:56 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2010-04-21 19:35:56 +0000 |
commit | e9212a9793a956748338e5dabdb09de19f5e87d5 (patch) | |
tree | a0b975dcd14dce32628b8d50d1d10c81d6ee96a8 /lib/libc/stdlib | |
parent | 1b4a81ab7e7cd566a22b95b55887ed1468aa12cb (diff) | |
download | FreeBSD-src-e9212a9793a956748338e5dabdb09de19f5e87d5.zip FreeBSD-src-e9212a9793a956748338e5dabdb09de19f5e87d5.tar.gz |
C language does not has references, it provides pointers.
Suggested by: bde
MFC after: 2 weeks
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/realpath.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/realpath.3 b/lib/libc/stdlib/realpath.3 index aee65f7..166bb12 100644 --- a/lib/libc/stdlib/realpath.3 +++ b/lib/libc/stdlib/realpath.3 @@ -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 . |