From 1d45c439b83565699a1fc220dc7f34c9ceb11a7e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 29 May 2014 04:22:30 -0700 Subject: Add extern "C" to common headers. --- include/atomic.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/atomic.h') diff --git a/include/atomic.h b/include/atomic.h index 87a02f7b..4adb7a94 100644 --- a/include/atomic.h +++ b/include/atomic.h @@ -3,6 +3,9 @@ #include "static_assert.h" +#ifdef __cplusplus +extern "C" { +#endif typedef void *volatile XchgPtr; @@ -198,4 +201,8 @@ inline void *CompExchangePtr(XchgPtr *ptr, void *oldval, void *newval) #error "No atomic functions available on this platform!" #endif +#ifdef __cplusplus +} +#endif + #endif /* AL_ATOMIC_H */ -- cgit v1.2.3