From 9cdb0e70dfbffcf2d9b14771a6b12310c75aabca Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Tue, 19 Aug 2025 07:02:59 +0100 Subject: [PATCH] Fix uint64_t --- stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdint.h b/stdint.h index 22fe599..3ac4768 100644 --- a/stdint.h +++ b/stdint.h @@ -22,7 +22,7 @@ typedef unsigned int uint32_t; #if ULONG_MAX == 4294967295UL && !defined (NO_LONG_LONG) typedef signed long long int64_t; -typedef signed long long uint64_t; +typedef unsigned long long uint64_t; #else typedef signed long int64_t; typedef unsigned long uint64_t; -- 2.34.1