diff options
Diffstat (limited to 'contrib/tcl/doc/SplitPath.3')
-rw-r--r-- | contrib/tcl/doc/SplitPath.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tcl/doc/SplitPath.3 b/contrib/tcl/doc/SplitPath.3 index abfffb500abd5..f98a78b75905c 100644 --- a/contrib/tcl/doc/SplitPath.3 +++ b/contrib/tcl/doc/SplitPath.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" SCCS: @(#) SplitPath.3 1.3 96/07/31 17:04:33 +'\" SCCS: @(#) SplitPath.3 1.4 96/08/19 14:59:35 '\" .so man.macros .TH Tcl_SplitPath 3 7.5 Tcl "Tcl Library Procedures" @@ -59,11 +59,11 @@ responsibility to free all of this storage. For example, suppose that you have called \fBTcl_SplitPath\fR with the following code: .CS -int argc, code; +int argc; char *path; char **argv; \&... -code = Tcl_SplitPath(interp, string, &argc, &argv); +Tcl_SplitPath(string, &argc, &argv); .CE Then you should eventually free the storage with a call like the following: |