diff options
author | Chris Costello <chris@FreeBSD.org> | 2000-01-29 19:43:25 +0000 |
---|---|---|
committer | Chris Costello <chris@FreeBSD.org> | 2000-01-29 19:43:25 +0000 |
commit | cfc2d91b2564d60719a279bb072ecf87e737c47e (patch) | |
tree | 38e6d260fc24cbb01dde194dc221d5680614d61c | |
parent | 4486cd7990374fb21d0aefa1dabd70c5efcc0798 (diff) |
Notes
-rw-r--r-- | lib/libc/stdlib/realpath.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdlib/realpath.3 b/lib/libc/stdlib/realpath.3 index fa7323d78bab..5700ddfb94e0 100644 --- a/lib/libc/stdlib/realpath.3 +++ b/lib/libc/stdlib/realpath.3 @@ -45,7 +45,7 @@ .Fd #include <sys/param.h> .Fd #include <stdlib.h> .Ft "char *" -.Fn realpath "const char *pathname" "char resolvedname[MAXPATHLEN]" +.Fn realpath "const char *pathname" "char resolved_path[MAXPATHLEN]" .Sh DESCRIPTION The .Fn realpath @@ -59,9 +59,9 @@ in .Fa pathname , and copies the resulting absolute pathname into the memory referenced by -.Fa resolvedname . +.Fa resolved_path . The -.Fa resolvedname +.Fa resolved_path argument .Em must refer to a buffer capable of storing at least @@ -82,14 +82,14 @@ is called. The .Fn realpath function returns -.Fa resolved_name +.Fa resolved_path on success. If an error occurs, .Fn realpath returns .Dv NULL , and -.Fa resolved_name +.Fa resolved_path contains the pathname which caused the problem. .Sh ERRORS The function |