diff options
author | suresh <suresh> | 1998-05-16 11:51:39 (GMT) |
---|---|---|
committer | suresh <suresh> | 1998-05-16 11:51:39 (GMT) |
commit | 258204483c0b1f65d8f040ce63189c31f081fc13 (patch) | |
tree | 8a33944fdb7ad80dedfa68d0b0b5e765513e432b /win | |
parent | fcbdafcc79f77bf9d1dd024cd13860ff1493f0ca (diff) | |
download | tcl-258204483c0b1f65d8f040ce63189c31f081fc13.zip tcl-258204483c0b1f65d8f040ce63189c31f081fc13.tar.gz tcl-258204483c0b1f65d8f040ce63189c31f081fc13.tar.bz2 |
Renamed 'TclWinAccess()' to 'TclpAccess()' & 'TclWinStat()' to 'TclpStat()'.
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinFile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/tclWinFile.c b/win/tclWinFile.c index 9d97b02..a7a15a1 100644 --- a/win/tclWinFile.c +++ b/win/tclWinFile.c @@ -522,7 +522,7 @@ TclWinResolveShortcut(bufferPtr) /* *---------------------------------------------------------------------- * - * TclWinStat, TclWinLstat -- + * TclpStat, TclpLstat -- * * These functions replace the library versions of stat and lstat. * @@ -541,7 +541,7 @@ TclWinResolveShortcut(bufferPtr) */ int -TclWinStat(path, buf) +TclpStat(path, buf) CONST char *path; /* Path of file to stat (in current CP). */ struct stat *buf; /* Filled with results of stat call. */ { @@ -588,7 +588,7 @@ TclWinStat(path, buf) /* *--------------------------------------------------------------------------- * - * TclWinAccess -- + * TclpAccess -- * * This function replaces the library version of access. * @@ -605,7 +605,7 @@ TclWinStat(path, buf) */ int -TclWinAccess( +TclpAccess( CONST char *path, /* Path of file to access (in current CP). */ int mode) /* Permission setting. */ { |