Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68201 )
Change subject: src/commonlib: Clean up includes ......................................................................
src/commonlib: Clean up includes
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: Ieba5a5291209e50dc8b3816efb25bb5b2515fa6a --- M src/commonlib/iobuf.c M src/commonlib/region.c 2 files changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/68201/1
diff --git a/src/commonlib/iobuf.c b/src/commonlib/iobuf.c index 042e8dd..378793e 100644 --- a/src/commonlib/iobuf.c +++ b/src/commonlib/iobuf.c @@ -3,6 +3,7 @@ #include <commonlib/endian.h> #include <commonlib/iobuf.h> #include <string.h> +#include <stdint.h>
static int ibuf_check_size(const struct ibuf *ib, size_t sz) { diff --git a/src/commonlib/region.c b/src/commonlib/region.c index 252f6fa..4153f0a 100644 --- a/src/commonlib/region.c +++ b/src/commonlib/region.c @@ -2,6 +2,7 @@
#include <commonlib/helpers.h> #include <commonlib/region.h> +#include <stdint.h> #include <string.h>
int region_is_subregion(const struct region *p, const struct region *c)