From 825d646196584a99818a408ad6155166a50c4c30 Mon Sep 17 00:00:00 2001 From: Thomas W Rodgers Date: Sat, 18 Feb 2023 10:26:01 -0800 Subject: Include in common/kernel/hashlib.h The definitions for uint32_t, uint64_t report as undefined when compiling under GCC13. They were previously found by transitive includes, but this is not guaranteed to work, and GCC13 forced the issue. --- common/kernel/hashlib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/kernel/hashlib.h b/common/kernel/hashlib.h index 2f7357e2..a3fcd4ca 100644 --- a/common/kernel/hashlib.h +++ b/common/kernel/hashlib.h @@ -14,6 +14,7 @@ #include #include +#include #include #include #include -- cgit v1.2.3