summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-09 13:41:47 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-09 13:41:47 +0000
commit99ba7e968aa88047fe41b50884c002dc2d359f3c (patch)
treed2bb12df3974a2a19edee232aa9b2ca640cfc39e
parentb9677a727e844b68494279efe85b38a6a067ba49 (diff)
downloadATCD-99ba7e968aa88047fe41b50884c002dc2d359f3c.tar.gz
ChangeLogTag: Fri Jun 9 13:33:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>Fri Jun 9 13:12:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-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__ */