From: Simon Glass Date: Tue, 18 Mar 2025 15:20:45 +0000 (+0100) Subject: membuf: Include stdbool X-Git-Tag: v2025.07-rc1~119^2~8^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f48f1705c357605f05f5a47b84c1c89dc33bec35;p=pandora-u-boot.git membuf: Include stdbool This uses a bool type so include the required header. Signed-off-by: Simon Glass --- diff --git a/include/membuf.h b/include/membuf.h index 17616d5577e..636ed703ee7 100644 --- a/include/membuf.h +++ b/include/membuf.h @@ -9,6 +9,8 @@ #ifndef _membuf_H #define _membuf_H +#include + /** * @struct membuf: holds the state of a membuff - it is used for input and * output buffers. The buffer extends from @start to (@start + @size - 1).