summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/NeKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-10-05 09:46:50 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-10-05 09:46:50 +0200
commitabff64f38c988a5350cbeb243896c0ee30401058 (patch)
tree02ef069ca9b529d16ab120000b9c79fdbdd29270 /dev/kernel/NeKit
parentd8de88f25cfa7cc7a46ee8913ba1338f67aaeac5 (diff)
feat: launch: reworking launch program.
feat: boot: Use NB prefix instead of CB. feat: kernel: Use more portable types. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/NeKit')
-rw-r--r--dev/kernel/NeKit/Defines.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/dev/kernel/NeKit/Defines.h b/dev/kernel/NeKit/Defines.h
index 27f4f127..c5f02e0a 100644
--- a/dev/kernel/NeKit/Defines.h
+++ b/dev/kernel/NeKit/Defines.h
@@ -35,13 +35,13 @@ using nullPtr = decltype(nullptr);
using NullPtr = decltype(nullptr);
using Int = int;
-using Int32 = int;
-using UShort = unsigned short;
-using UInt16 = unsigned short;
+using Int32 = __INT32_TYPE__;
+using UShort = __UINT16_TYPE__;
+using UInt16 = __UINT16_TYPE__;
using Short = short;
using Int16 = short;
-using UInt = unsigned int;
-using UInt32 = unsigned int;
+using UInt = __UINT32_TYPE__;
+using UInt32 = __UINT32_TYPE__;
using Long = __INT64_TYPE__;
using Int64 = __INT64_TYPE__;
using ULong = __UINT64_TYPE__;
@@ -49,8 +49,8 @@ using UInt64 = __UINT64_TYPE__;
using Boolean = bool;
using Bool = bool;
using Char = char;
-using UChar = unsigned char;
-using UInt8 = unsigned char;
+using UChar = __UINT8_TYPE__;
+using UInt8 = __UINT8_TYPE__;
using SSize = Int64;
using SSizeT = Int64;