From 8c78285400bee65c54d03163a2ffa58674d458a6 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Tue, 19 Aug 2025 06:04:45 +0100 Subject: [PATCH] Don't forget UL for ULONG_MAX --- stdint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdint.h b/stdint.h index 5163ae3..22fe599 100644 --- a/stdint.h +++ b/stdint.h @@ -20,7 +20,7 @@ typedef signed int int32_t; typedef unsigned int uint32_t; #endif -#if ULONG_MAX == 4294967295 && !defined (NO_LONG_LONG) +#if ULONG_MAX == 4294967295UL && !defined (NO_LONG_LONG) typedef signed long long int64_t; typedef signed long long uint64_t; #else -- 2.34.1