From 3fd7ba82a69c52db6c8e20e9b0998e10de5b78a5 Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Wed, 26 Oct 2022 15:56:40 +0200 Subject: [PATCH] DRAFT lib: stdint: Remove __SIZEOF_LONG_LONG__ guard. * include/stdint.h (uint64_t, int64_t): Add unconditionally. --- include/stdint.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/stdint.h b/include/stdint.h index 02ade3e4..5cf9d319 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -55,10 +55,8 @@ typedef unsigned short uint16_t; typedef short int16_t; typedef unsigned uint32_t; typedef int int32_t; -#if __SIZEOF_LONG_LONG__ == 8 typedef unsigned long long uint64_t; typedef long long int64_t; -#endif // __SIZEOF_LONG_LONG__ == 8 typedef int intmax_t; typedef unsigned uintmax_t;