From beb1e767c6d1b56803decc299a1046cbe27a1687 Mon Sep 17 00:00:00 2001 From: hobbs Date: Thu, 8 Dec 2005 20:20:11 +0000 Subject: * generic/tcl.h: use struct __stat64 (not _stat64) for MSC_VER >= 1400 (i.e. latest Platform SDK). --- generic/tcl.h | 4 ++-- 1 file 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 -- cgit v0.12