diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-22 13:17:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-22 13:17:43 (GMT) |
commit | 39d3e6527b8253e9a2df9d4972003725207b705d (patch) | |
tree | 8a52ad980cb80651d9091d33c5fb39ff2ae86d42 /generic/tcl.h | |
parent | cca6daf1b032534c3fa810c219cdc076941c0371 (diff) | |
parent | f46d2546ab96bd78b76d02331df74ce035c356d4 (diff) | |
download | tcl-39d3e6527b8253e9a2df9d4972003725207b705d.zip tcl-39d3e6527b8253e9a2df9d4972003725207b705d.tar.gz tcl-39d3e6527b8253e9a2df9d4972003725207b705d.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 ab54078..4bf81cc 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -458,7 +458,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; |