diff options
author | hobbs <hobbs> | 2005-12-08 20:20:11 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-12-08 20:20:11 (GMT) |
commit | beb1e767c6d1b56803decc299a1046cbe27a1687 (patch) | |
tree | 6990eaaba9b5e9de285ce7c9952db7b243736998 /generic/tcl.h | |
parent | cf19c60188b714ac2d1ff99555e8a7a22aecda95 (diff) | |
download | tcl-beb1e767c6d1b56803decc299a1046cbe27a1687.zip tcl-beb1e767c6d1b56803decc299a1046cbe27a1687.tar.gz tcl-beb1e767c6d1b56803decc299a1046cbe27a1687.tar.bz2 |
* generic/tcl.h: use struct __stat64 (not _stat64) for MSC_VER >=
1400 (i.e. latest Platform SDK).
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 83c5821..b446591 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -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: tcl.h,v 1.208 2005/11/27 02:33:48 das Exp $ + * RCS: @(#) $Id: tcl.h,v 1.209 2005/12/08 20:20:11 hobbs Exp $ */ #ifndef _TCL @@ -396,7 +396,7 @@ typedef struct stati64 Tcl_StatBuf; # if _MSC_VER < 1400 typedef struct _stati64 Tcl_StatBuf; # else -typedef struct _stat64 Tcl_StatBuf; +typedef struct __stat64 Tcl_StatBuf; # endif /* _MSC_VER < 1400 */ # define TCL_LL_MODIFIER "I64" # define TCL_LL_MODIFIER_SIZE 3 |