From 6aecc45ce1d9196ddd7258324fae85cf43c8a347 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 3 Aug 2025 10:27:32 +0500 Subject: [PATCH] engine: platform: include errno.h globally, it's defined by the C standard, so should be available everywhere --- engine/platform/platform.h | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/platform/platform.h b/engine/platform/platform.h index 586a2836..772ed47f 100644 --- a/engine/platform/platform.h +++ b/engine/platform/platform.h @@ -17,6 +17,7 @@ GNU General Public License for more details. #ifndef PLATFORM_H #define PLATFORM_H +#include #include "common.h" #include "system.h" #include "defaults.h"