summaryrefslogtreecommitdiffhomepage
path: root/lib/boot.h
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-08-16 19:35:12 +0200
committerAmlal <amlal@nekernel.org>2025-08-16 19:35:12 +0200
commit2835bd8b264d52dc922cc303c0c5e5ddb6aedb99 (patch)
tree9a1b0ce29eb1bcf7ca443fcd9500d3e54a268eb3 /lib/boot.h
parent06cfc7292fa973d23c4019ea1d4749b59e1be5e3 (diff)
fix: lib/boot.h: use portable types for gcc/clang.v0.0.1-release
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'lib/boot.h')
-rw-r--r--lib/boot.h4
1 files 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;