diff options
author | suresh <suresh> | 1998-06-03 09:32:16 (GMT) |
---|---|---|
committer | suresh <suresh> | 1998-06-03 09:32:16 (GMT) |
commit | d4ef83fec292c44502e1555fc0ccd918e2c2f5f6 (patch) | |
tree | e3f9fda25aa71d1f4767497882a350af354df3de /mac | |
parent | d94accfbbdf67223f238d232babcbdda6a9d420d (diff) | |
download | tcl-d4ef83fec292c44502e1555fc0ccd918e2c2f5f6.zip tcl-d4ef83fec292c44502e1555fc0ccd918e2c2f5f6.tar.gz tcl-d4ef83fec292c44502e1555fc0ccd918e2c2f5f6.tar.bz2 |
Renamed 'TclMacStat(...)' to 'TclpStat(...)' & 'TclMacAccess(...)' to
'TclpAccess(...)'.
Diffstat (limited to 'mac')
-rw-r--r-- | mac/tclMacFile.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mac/tclMacFile.c b/mac/tclMacFile.c index 3d4a22b..3016a97 100644 --- a/mac/tclMacFile.c +++ b/mac/tclMacFile.c @@ -32,7 +32,7 @@ #include <FSpCompat.h> /* - * Static variables used by the TclMacStat function. + * Static variables used by the TclpStat function. */ static int initalized = false; static long gmt_offset; @@ -399,7 +399,7 @@ TclMatchFiles( /* *---------------------------------------------------------------------- * - * TclMacStat -- + * TclpStat -- * * This function replaces the library version of stat. The stat * function provided by most Mac compiliers is rather broken and @@ -415,7 +415,7 @@ TclMatchFiles( */ int -TclMacStat( +TclpStat( char *path, struct stat *buf) { @@ -646,7 +646,7 @@ TclMacReadlink( /* *---------------------------------------------------------------------- * - * TclMacAccess -- + * TclpAccess -- * * This function replaces the library version of access. The * access function provided by most Mac compiliers is rather @@ -662,7 +662,7 @@ TclMacReadlink( */ int -TclMacAccess( +TclpAccess( const char *path, int mode) { |