summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-04-18 05:56:02 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-04-18 05:56:02 +0000
commit2978d220405bec974b80391f5ea6388a8b0c4e58 (patch)
treef3cbc47a4678585904ed4e5537bf2656eb443885 /ACE
parent614056f3ba59448e0ed104bd4f7eeab3b263cd34 (diff)
downloadATCD-2978d220405bec974b80391f5ea6388a8b0c4e58.tar.gz
Wed Apr 18 05:55:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ace/os_include/os_intrin.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/ACE/ace/os_include/os_intrin.h b/ACE/ace/os_include/os_intrin.h
index 8d7cdc7f7bc..bbc590b0146 100644
--- a/ACE/ace/os_include/os_intrin.h
+++ b/ACE/ace/os_include/os_intrin.h
@@ -43,13 +43,10 @@ extern "C"
#if defined (_MSC_VER) && (_MSC_VER < 1400)
// See http://msdn2.microsoft.com/en-us/library/f24ya7ct(VS.71).aspx
-extern "C"
-{
- LONG __cdecl _InterlockedIncrement (LONG volatile *Addend);
- LONG __cdecl _InterlockedDecrement (LONG volatile *Addend);
- LONG __cdecl _InterlockedExchange (LPLONG volatile Target, LONG Value);
- LONG __cdecl _InterlockedExchangeAdd (LPLONG volatile Addend, LONG Value);
-}
+LONG __cdecl _InterlockedIncrement (LONG volatile *Addend);
+LONG __cdecl _InterlockedDecrement (LONG volatile *Addend);
+LONG __cdecl _InterlockedExchange (LPLONG volatile Target, LONG Value);
+LONG __cdecl _InterlockedExchangeAdd (LPLONG volatile Addend, LONG Value);
#endif //_MSC_VER
#ifdef __cplusplus