From 2835bd8b264d52dc922cc303c0c5e5ddb6aedb99 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 16 Aug 2025 19:35:12 +0200 Subject: fix: lib/boot.h: use portable types for gcc/clang. Signed-off-by: Amlal --- lib/boot.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/boot.h b/lib/boot.h index 5aab52b..8a28eff 100644 --- a/lib/boot.h +++ b/lib/boot.h @@ -31,8 +31,8 @@ typedef unsigned char uint8_t; typedef __INTPTR_TYPE__ intptr_t; typedef __INT64_TYPE__ int64_t; -typedef int int32_t; -typedef short int16_t; +typedef __INT32_TYPE__ int32_t; +typedef __INT16_TYPE__ int16_t; typedef char int8_t; typedef void* voidptr_t; -- cgit v1.2.3