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/tcl.decls | |
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/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 671f5ff..b7f87d7 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -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: tcl.decls,v 1.8 1999/04/16 00:46:41 stanton Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.9 1999/04/17 00:32:27 hershey Exp $ library tcl @@ -1250,6 +1250,12 @@ declare 365 generic { declare 366 generic { int Tcl_Chdir(CONST char *dirName) } +declare 367 generic { + int Tcl_Access(CONST char *path, int mode) +} +declare 368 generic { + int Tcl_Stat(CONST char *path, struct stat *bufPtr) +} ############################################################################## |