summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
diff options
context:
space:
mode:
authorhershey <hershey@noemail.net>1999-04-17 01:36:32 (GMT)
committerhershey <hershey@noemail.net>1999-04-17 01:36:32 (GMT)
commitacddeb8a95a58110bd3862b8f4dccfdd2a60f411 (patch)
treeab938cf3f5421bf1f0e268d982db9d4f62ca2fd0 /generic/tclUtil.c
parentd03bbbb9cd035c95266afbcff6098eaf5d8f4132 (diff)
downloadtcl-acddeb8a95a58110bd3862b8f4dccfdd2a60f411.zip
tcl-acddeb8a95a58110bd3862b8f4dccfdd2a60f411.tar.gz
tcl-acddeb8a95a58110bd3862b8f4dccfdd2a60f411.tar.bz2
added first draft of documentation for Tcl_Access and Tcl_Stat.
defined Tcl_Stat and Tcl_Access to call TclStat and TclAccess instead of TclpStat and TclpAccess. FossilOrigin-Name: 62ed9ae0ba6a070fee93157356c5ae47315ee8dd
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r--generic/tclUtil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c
index 556977b..dfbdb08 100644
--- a/generic/tclUtil.c
+++ b/generic/tclUtil.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUtil.c,v 1.6 1999/04/17 00:32:32 hershey Exp $
+ * RCS: @(#) $Id: tclUtil.c,v 1.7 1999/04/17 01:36:32 hershey Exp $
*/
#include "tclInt.h"
@@ -2179,7 +2179,7 @@ Tcl_Access(path, mode)
CONST char *path; /* Path of file to access (UTF-8). */
int mode; /* Permission setting. */
{
- return TclpAccess(path, mode);
+ return TclAccess(path, mode);
}
/*
@@ -2203,5 +2203,5 @@ Tcl_Stat(path, bufPtr)
CONST char *path; /* Path of file to stat (in UTF-8). */
struct stat *bufPtr; /* Filled with results of stat call. */
{
- return TclpStat(path, bufPtr);
+ return TclStat(path, bufPtr);
}