From: Petr Štetiar Date: Tue, 22 Oct 2019 11:21:17 +0000 (+0200) Subject: crc32: add missing stdint.h dependency X-Git-Url: http://git.openwrt.org/feed/routing.git;lede-17.01?a=commitdiff_plain;h=76d53deef8bb512255266d7a51918d300d8a6ab0;p=project%2Ffwtool.git crc32: add missing stdint.h dependency In order to fix compile error if using this header standalone, in unit tests for example. Signed-off-by: Petr Štetiar --- diff --git a/crc32.h b/crc32.h index 022c69f..54c2329 100644 --- a/crc32.h +++ b/crc32.h @@ -17,6 +17,8 @@ #ifndef __BB_CRC32_H #define __BB_CRC32_H +#include + static inline void crc32_filltable(uint32_t *crc_table) {