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 | 43ee8fffc82dc65f7cb4535207da70a1a538b167 (patch) | |
tree | 8a52ad980cb80651d9091d33c5fb39ff2ae86d42 /generic/tcl.h | |
parent | dec33abc5ae0fbeb003f2e59af57ba857dc11786 (diff) | |
parent | cec233a8882dbc9c5eab369b88cef6bc32675e07 (diff) | |
download | tcl-43ee8fffc82dc65f7cb4535207da70a1a538b167.zip tcl-43ee8fffc82dc65f7cb4535207da70a1a538b167.tar.gz tcl-43ee8fffc82dc65f7cb4535207da70a1a538b167.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; |