crc: forgot an include

This commit is contained in:
Will Xyen
2020-06-24 19:25:46 -07:00
parent 7d533f60cb
commit 682fe8aa1b

View File

@@ -1,6 +1,8 @@
#include <stddef.h>
#include <stdint.h>
#include "util/log.h"
uint8_t crc8(const void *ptr, size_t nbytes, uint8_t in)
{
const uint8_t *bytes;