Hopefully final fix
authorRobert Pengelly <robertapengelly@hotmail.com>
Thu, 4 Sep 2025 12:18:23 +0000 (13:18 +0100)
committerRobert Pengelly <robertapengelly@hotmail.com>
Thu, 4 Sep 2025 12:18:23 +0000 (13:18 +0100)
stdint.h

index cd9869ee497a2b53ac22d009a5701c84f380587d..d389333f1caef1ac495dc04e32466afd4d2457d9 100644 (file)
--- a/stdint.h
+++ b/stdint.h
@@ -4,24 +4,33 @@
 #ifndef     _STDINT_H_INCLUDED
 #ifndef     _STDINT_H
 #ifndef     _STDINT_H_
-#ifndef     _UINT64_T
 
 #define     _STDINT_H_INCLUDED
 #define     _STDINT_H
 #define     _STDINT_H_
-#define     _UINT64_T
 
 #include    <limits.h>
 
+#ifndef     _INT64_T
+#define     _INT64_T
 #if     defined (NO_LONG_LONG) || ULONG_MAX > 4294967295UL
 typedef     signed long                 int64_t;
-typedef     unsigned long               uint64_t;
 #else
 typedef     signed long long            int64_t;
-typedef     unsigned long long          uint64_t;
 #endif
+#endif      /* _INT64_T */
 
+#ifndef     _UINT64_T
+#define     _UINT64_T
+#if     defined (NO_LONG_LONG) || ULONG_MAX > 4294967295UL
+typedef     unsigned long               uint64_t;
+#else
+typedef     unsigned long long          uint64_t;
+#endif
 #endif      /* _UINT64_T */
+
+
+
 #endif      /* _STDINT_H_ */
 #endif      /* _STDINT_H */
 #endif      /* _STDINT_H_INCLUDED */