diff options
| author | Amlal <amlal@nekernel.org> | 2025-08-16 19:35:12 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-08-16 19:35:12 +0200 |
| commit | 2835bd8b264d52dc922cc303c0c5e5ddb6aedb99 (patch) | |
| tree | 9a1b0ce29eb1bcf7ca443fcd9500d3e54a268eb3 /lib/boot.h | |
| parent | 06cfc7292fa973d23c4019ea1d4749b59e1be5e3 (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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
