summaryrefslogtreecommitdiff
path: root/firmware/include/crc32.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/crc32.h')
-rw-r--r--firmware/include/crc32.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/include/crc32.h b/firmware/include/crc32.h
index 034c3984ab..8e1f868988 100644
--- a/firmware/include/crc32.h
+++ b/firmware/include/crc32.h
@@ -18,10 +18,12 @@
18 * KIND, either express or implied. 18 * KIND, either express or implied.
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21#include <stdint.h>
22
21#ifndef _CRC32_H 23#ifndef _CRC32_H
22#define _CRC32_H 24#define _CRC32_H
23 25
24unsigned crc_32(const void *src, unsigned len, unsigned crc32); 26uint32_t crc_32(const void *src, uint32_t len, uint32_t crc32);
25 27
26#endif 28#endif
27 29