summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index ccbb453..26ec95b 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.180 2004/06/04 20:17:10 dgp Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.181 2004/06/05 17:31:08 kennykb Exp $
*/
#ifndef _TCL
@@ -341,11 +341,16 @@ typedef long LONG;
*/
#if !defined(TCL_WIDE_INT_TYPE)&&!defined(TCL_WIDE_INT_IS_LONG)
-# if defined(__CYGWIN__)
+# if defined(__GNUC__)
# define TCL_WIDE_INT_TYPE long long
-# define TCL_LL_MODIFIER "L"
+# if defined(__WIN32__) && !defined(__CYGWIN__)
+# define TCL_LL_MODIFIER "I64"
+# define TCL_LL_MODIFIER_SIZE 3
+# else
+# define TCL_LL_MODIFIER "L"
+# define TCL_LL_MODIFIER_SIZE 1
+# endif
typedef struct stat Tcl_StatBuf;
-# define TCL_LL_MODIFIER_SIZE 1
# elif defined(__WIN32__)
# define TCL_WIDE_INT_TYPE __int64
# ifdef __BORLANDC__