From 76d53deef8bb512255266d7a51918d300d8a6ab0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Tue, 22 Oct 2019 13:21:17 +0200 Subject: [PATCH] crc32: add missing stdint.h dependency MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In order to fix compile error if using this header standalone, in unit tests for example. Signed-off-by: Petr Å tetiar --- crc32.h | 2 ++ 1 file changed, 2 insertions(+) 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) { -- 2.30.2