From c3e4cbe0c52ce6d0d986e6b650ca051f6eeffc68 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 17 May 2022 14:15:44 +0200 Subject: [PATCH] basic: make macro-fundamental.h self-contained When !SD_BOOT, it used size_t without including the appropriate header. --- src/fundamental/macro-fundamental.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fundamental/macro-fundamental.h b/src/fundamental/macro-fundamental.h index 1c198f6ad9a..0e3e22d4352 100644 --- a/src/fundamental/macro-fundamental.h +++ b/src/fundamental/macro-fundamental.h @@ -2,7 +2,8 @@ #pragma once #ifndef SD_BOOT -#include +# include +# include #endif #include -- 2.47.3