Merge pull request #1118 from nemerle/fix_crc_signature

Fix the calc_crc_16_ccitt signature to match the source file
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-03-30 16:42:40 -07:00
+2 -3
View File
@@ -141,9 +141,8 @@ bin_to_uint8(const uint8_t *bin)
}
/* crc.c */
uint32_t
calc_crc_16_ccitt(const uint8_t *src, uint32_t nbytes, uint16_t crcwk);
uint16_t
calc_crc_16_ccitt(const uint8_t *src, size_t nbytes, uint16_t crc);
#if defined(__cplusplus)
} /* extern "C" { */
#endif