projects
/
xar.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c78285
)
Fix uint64_t
author
Robert Pengelly
<robertapengelly@hotmail.com>
Tue, 19 Aug 2025 06:01:44 +0000
(07:01 +0100)
committer
Robert Pengelly
<robertapengelly@hotmail.com>
Tue, 19 Aug 2025 06:01:44 +0000
(07:01 +0100)
stdint.h
patch
|
blob
|
history
diff --git
a/stdint.h
b/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;