summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/string/strncmp.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-10-28 17:00:27 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-10-28 17:00:27 +0000
commit7e3be7710f1e1dc4039b275d8d63a9f69b35fb9e (patch)
tree7f11e8b12aa652dcce5ec2393e4bb51ce743c576 /src/VBox/Runtime/common/string/strncmp.cpp
parent41d5500a6c36b4c1d231afe3f85f43a1adeec4f7 (diff)
downloadVirtualBox-svn-7e3be7710f1e1dc4039b275d8d63a9f69b35fb9e.tar.gz
IPRT: Make Watcom C an alterntive for compiling the OS/2 kernel code (GA mainly), governed by VBOX_USE_WATCOM_FOR_OS2.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@75129 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/string/strncmp.cpp')
-rw-r--r--src/VBox/Runtime/common/string/strncmp.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/VBox/Runtime/common/string/strncmp.cpp b/src/VBox/Runtime/common/string/strncmp.cpp
index e1c986c26c4..9bca03bb706 100644
--- a/src/VBox/Runtime/common/string/strncmp.cpp
+++ b/src/VBox/Runtime/common/string/strncmp.cpp
@@ -28,6 +28,8 @@
#ifdef _MSC_VER
_CRTIMP int __cdecl strncmp
+#elif defined(__WATCOMC__)
+_WCRTLINK int std::strncmp
#else
int strncmp
#endif