Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/55320 )
Change subject: include/types.h: #include <limits.h> ......................................................................
include/types.h: #include <limits.h>
It makes sense to provide limits.h via the types.h header.
Change-Id: I3ba189b998644c68068b85f25b11cff4d70c037d Signed-off-by: Angel Pons th3fanbus@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/55320 Reviewed-by: Nico Huber nico.h@gmx.de Reviewed-by: Tim Wawrzynczak twawrzynczak@chromium.org Reviewed-by: Felix Held felix-coreboot@felixheld.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/include/types.h 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved Felix Held: Looks good to me, approved Tim Wawrzynczak: Looks good to me, but someone else must approve
diff --git a/src/include/types.h b/src/include/types.h index cbdb67a..8724d4b 100644 --- a/src/include/types.h +++ b/src/include/types.h @@ -5,6 +5,7 @@
/* types.h is supposed to provide the standard headers defined in here: */ #include <commonlib/bsd/cb_err.h> +#include <limits.h> #include <stdbool.h> #include <stdint.h> #include <stddef.h>