From 159f38d4e12bbcc48799431f4b69321a445be8ca Mon Sep 17 00:00:00 2001
From: Steven Le Rouzic <steven.lerouzic@gmail.com>
Date: Sun, 5 Jan 2025 22:12:56 +0100
Subject: Add CityHash

---
 asl/integers.hpp | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'asl/integers.hpp')

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;
 
-- 
cgit