diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-22 13:16:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-22 13:16:21 (GMT) |
commit | cec233a8882dbc9c5eab369b88cef6bc32675e07 (patch) | |
tree | 1b354d32ecde0d84c2e3f5847b899015ce775a34 /generic/tcl.h | |
parent | 6a67104caf0fc1639d28655d981bc0cc69d34770 (diff) | |
download | tcl-cec233a8882dbc9c5eab369b88cef6bc32675e07.zip tcl-cec233a8882dbc9c5eab369b88cef6bc32675e07.tar.gz tcl-cec233a8882dbc9c5eab369b88cef6bc32675e07.tar.bz2 |
Cygwin: Fix conflicting definition with _mingw_stat64.h, if included together with <tcl.h>
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index eeff36e..31960ec 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -422,7 +422,7 @@ typedef unsigned TCL_WIDE_INT_TYPE Tcl_WideUInt; typedef struct _stat32i64 Tcl_StatBuf; # endif /* _MSC_VER < 1400 */ #elif defined(__CYGWIN__) - typedef struct _stat32i64 { + typedef struct { dev_t st_dev; unsigned short st_ino; unsigned short st_mode; |