diff options
Diffstat (limited to 'asl/integers.hpp')
-rw-r--r-- | asl/integers.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/asl/integers.hpp b/asl/integers.hpp index 5f6ad76..b9ca9f8 100644 --- a/asl/integers.hpp +++ b/asl/integers.hpp @@ -20,6 +20,12 @@ using uint32_t = unsigned int; using uint64_t = unsigned long;
#endif
+struct uint128_t
+{
+ uint64_t high;
+ uint64_t low;
+};
+
using size_t = uint64_t;
using isize_t = int64_t;
|