X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Falgo%2Fcrc.h;h=c2553dd563166b389e4e879aa74e90eea261b036;hb=d2940873a40e7081117ae51cf201667fe2eefb2f;hp=81a0c9265a2b6bb7996618a3566c5cde34ab3465;hpb=46fb189becafd5e812ce9a58eb4c25b586b17771;p=bertos.git diff --git a/bertos/algo/crc.h b/bertos/algo/crc.h index 81a0c926..c2553dd5 100644 --- a/bertos/algo/crc.h +++ b/bertos/algo/crc.h @@ -55,14 +55,10 @@ #include #include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - +EXTERN_C_BEGIN /* CRC table */ -const uint16_t crc16tab[256]; +extern const uint16_t crc16tab[256]; /** @@ -107,8 +103,6 @@ INLINE uint16_t updcrc16(uint8_t c, uint16_t oldcrc) */ extern uint16_t crc16(uint16_t crc, const void *buf, size_t len); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +EXTERN_C_END #endif /* ALGO_CRC_H */