summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-12 11:06:34 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-12 11:06:34 +0000
commit7d7e120bf2d512b3462cf9f67b7698702f34009d (patch)
tree96daf0b8486b6ed7fdc5b7d46cffea21a016f5dd
parent45dc05114ef6ac7f6993e2ac25e9a291f9b04c80 (diff)
downloadATCD-7d7e120bf2d512b3462cf9f67b7698702f34009d.tar.gz
ChangeLogTag: Mon Jun 12 10:24:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/OS_NS_sys_stat.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ace/OS_NS_sys_stat.h b/ace/OS_NS_sys_stat.h
index 811bcad26a9..7914fd91d33 100644
--- a/ace/OS_NS_sys_stat.h
+++ b/ace/OS_NS_sys_stat.h
@@ -44,6 +44,8 @@ typedef struct __stat64 ACE_stat;
#elif defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) && !defined(__IBMCPP__) && ((defined _MSC_VER) && _MSC_VER >= 1300)
// For vc71 which has time_t as 32bit
typedef struct _stati64 ACE_stat;
+#elif defined (__MINGW32__)
+typedef struct _stat ACE_stat;
#else
typedef struct stat ACE_stat;
#endif /* ACE_WIN32 */