X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/dab7e06a4a914ebc67dd6a9a28c0987b49703c88..d784baaa3a97929fc9a7fed7fff84ff7b0f5bc17:/LUFA/Common/Endianness.h diff --git a/LUFA/Common/Endianness.h b/LUFA/Common/Endianness.h index 115d054f2..58f8012c1 100644 --- a/LUFA/Common/Endianness.h +++ b/LUFA/Common/Endianness.h @@ -56,6 +56,11 @@ #ifndef __LUFA_ENDIANNESS_H__ #define __LUFA_ENDIANNESS_H__ + /* Enable C linkage for C++ Compilers: */ + #if defined(__cplusplus) + extern "C" { + #endif + /* Preprocessor Checks: */ #if !defined(__INCLUDE_FROM_COMMON_H) #error Do not include this file directly. Include LUFA/Common/Common.h instead to gain this functionality. @@ -461,6 +466,11 @@ } } + /* Disable C linkage for C++ Compilers: */ + #if defined(__cplusplus) + } + #endif + #endif /** @} */