diff options
Diffstat (limited to 'dev/kernel')
| -rw-r--r-- | dev/kernel/NeKit/Defines.h | 14 |
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; |
