diff options
| author | dkf <dkf@noemail.net> | 2008-05-02 10:27:03 (GMT) |
|---|---|---|
| committer | dkf <dkf@noemail.net> | 2008-05-02 10:27:03 (GMT) |
| commit | 3a6f388db483516535cc4015ff7252ca64a280ec (patch) | |
| tree | a2961d8a6ed11aa358d492acf28db69f5b9ea4a0 /generic/tclFileSystem.h | |
| parent | 3241dd8431b925f618db4959dc2f593aaabd34d2 (diff) | |
| download | tcl-3a6f388db483516535cc4015ff7252ca64a280ec.zip tcl-3a6f388db483516535cc4015ff7252ca64a280ec.tar.gz tcl-3a6f388db483516535cc4015ff7252ca64a280ec.tar.bz2 | |
More elimination of pre-C89-isms.
FossilOrigin-Name: 27caec3459c6d0a42da22078c41eb35bf4661ebf
Diffstat (limited to 'generic/tclFileSystem.h')
| -rw-r--r-- | generic/tclFileSystem.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclFileSystem.h b/generic/tclFileSystem.h index cff0942..fee4d6e 100644 --- a/generic/tclFileSystem.h +++ b/generic/tclFileSystem.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclFileSystem.h,v 1.11 2005/10/13 00:07:17 dkf Exp $ + * RCS: @(#) $Id: tclFileSystem.h,v 1.12 2008/05/02 10:27:07 dkf Exp $ */ #ifndef _TCLFILESYSTEM @@ -98,7 +98,7 @@ MODULE_SCOPE Tcl_ThreadDataKey tclFsDataKey; MODULE_SCOPE Tcl_PathType TclFSGetPathType(Tcl_Obj *pathPtr, Tcl_Filesystem **filesystemPtrPtr, int *driveNameLengthPtr); -MODULE_SCOPE Tcl_PathType TclFSNonnativePathType(CONST char *pathPtr, +MODULE_SCOPE Tcl_PathType TclFSNonnativePathType(const char *pathPtr, int pathLen, Tcl_Filesystem **filesystemPtrPtr, int *driveNameLengthPtr, Tcl_Obj **driveNameRef); MODULE_SCOPE Tcl_PathType TclGetPathType(Tcl_Obj *pathPtr, @@ -107,7 +107,7 @@ MODULE_SCOPE Tcl_PathType TclGetPathType(Tcl_Obj *pathPtr, MODULE_SCOPE int TclFSEpochOk(int filesystemEpoch); MODULE_SCOPE int TclFSCwdIsNative(void); MODULE_SCOPE Tcl_Obj * TclWinVolumeRelativeNormalize(Tcl_Interp *interp, - CONST char *path, Tcl_Obj **useThisCwdPtr); + const char *path, Tcl_Obj **useThisCwdPtr); MODULE_SCOPE Tcl_FSPathInFilesystemProc TclNativePathInFilesystem; MODULE_SCOPE Tcl_FSCreateInternalRepProc TclNativeCreateNativeRep; |
