summaryrefslogtreecommitdiff
path: root/asl/integers.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'asl/integers.hpp')
-rw-r--r--asl/integers.hpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/asl/integers.hpp b/asl/integers.hpp
index b5d3e99..716b981 100644
--- a/asl/integers.hpp
+++ b/asl/integers.hpp
@@ -1,14 +1,17 @@
#pragma once
-using int8_t = char;
-using int16_t = short;
-using int32_t = int;
-using int64_t = long long;
+using int8_t = signed char;
+using int16_t = signed short;
+using int32_t = signed int;
+using int64_t = signed long;
+
+// @Todo Proper type definition for Windows/Linux
using uint8_t = unsigned char;
using uint16_t = unsigned short;
using uint32_t = unsigned int;
-using uint64_t = unsigned long long;
+using uint64_t = unsigned long;
+using size_t = uint64_t;
using isize_t = int64_t;