Fix uint64_t
authorRobert Pengelly <robertapengelly@hotmail.com>
Tue, 19 Aug 2025 06:01:44 +0000 (07:01 +0100)
committerRobert Pengelly <robertapengelly@hotmail.com>
Tue, 19 Aug 2025 06:01:44 +0000 (07:01 +0100)
stdint.h

index 22fe59900ff374399259a092ade6a0efed7ca615..3ac4768e24f9938efe7d390110d7320c56378731 100644 (file)
--- 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;