summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/OS_NS_sys_stat.inl2
1 files changed, 2 insertions, 0 deletions
diff --git a/ace/OS_NS_sys_stat.inl b/ace/OS_NS_sys_stat.inl
index 4000e3e65e5..40b4873ab84 100644
--- a/ace/OS_NS_sys_stat.inl
+++ b/ace/OS_NS_sys_stat.inl
@@ -238,6 +238,8 @@ namespace ACE_OS
ACE_OSCALL_RETURN (::_stat (file, stp), int, -1);
# elif defined (__BORLANDC__)
ACE_OSCALL_RETURN (::_stati64 (file, stp), int, -1);
+# elif defined _MSC_VER && _MSC_VER >= 1300 && _MSC_VER < 1400 // vc71
+ ACE_OSCALL_RETURN (::_stati64 (file, stp), int, -1);
# else
ACE_OSCALL_RETURN (::_stat64 (file, stp), int, -1);
# endif /* __IBMCPP__ */