Added missing extern "C"
authorPhillip Susi <phreak@iag.net>
Sun, 24 Jun 2001 17:58:13 +0000 (17:58 +0000)
committerPhillip Susi <phreak@iag.net>
Sun, 24 Jun 2001 17:58:13 +0000 (17:58 +0000)
svn path=/trunk/; revision=2006

reactos/include/ntdll/rtl.h

index 024b03a..7d41be0 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: rtl.h,v 1.30 2001/06/22 12:40:45 ekohl Exp $
+/* $Id: rtl.h,v 1.31 2001/06/24 17:58:13 phreak Exp $
  *
  */
 
@@ -8,6 +8,11 @@
 #include <napi/teb.h>
 #include <ddk/ntddk.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+
 typedef struct _CRITICAL_SECTION_DEBUG {
     WORD   Type;
     WORD   CreatorBackTraceIndex;
@@ -548,8 +553,15 @@ InterlockedExchangeAdd (
        PLONG Addend,
        LONG Increment
        );
+
+
 #endif /* __NTDRIVER__ */
 
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+
 #endif /* __INCLUDE_NTDLL_RTL_H */
 
 /* EOF */