diff options
author | hershey <hershey> | 1999-04-17 00:32:27 (GMT) |
---|---|---|
committer | hershey <hershey> | 1999-04-17 00:32:27 (GMT) |
commit | 099c93d0b49e614cfeffec26211d60d95235e2bf (patch) | |
tree | d397aeef664656316cd9691f280f0a3560670008 /generic/tclIOUtil.c | |
parent | 7ef335cb1b504d531a013d66e510b8c2d48945cc (diff) | |
download | tcl-099c93d0b49e614cfeffec26211d60d95235e2bf.zip tcl-099c93d0b49e614cfeffec26211d60d95235e2bf.tar.gz tcl-099c93d0b49e614cfeffec26211d60d95235e2bf.tar.bz2 |
changes make Tcl_Access and Tcl_Stat public.
also one minor fix in tests/all.tcl to fix bug 1770.
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index 6a00e54..a8f2427 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOUtil.c,v 1.6 1999/04/16 00:46:47 stanton Exp $ + * RCS: @(#) $Id: tclIOUtil.c,v 1.7 1999/04/17 00:32:29 hershey Exp $ */ #include "tclInt.h" @@ -446,7 +446,7 @@ Tcl_PosixError(interp) int TclStat(path, buf) CONST char *path; /* Path of file to stat (in current CP). */ - TclStat_ *buf; /* Filled with results of stat call. */ + struct stat *buf; /* Filled with results of stat call. */ { StatProc *statProcPtr; int retVal = -1; |