From 12b3a82d6ae2878ef6387023b4aa67c1e556616f Mon Sep 17 00:00:00 2001 From: "Jan (janneke) Nieuwenhuizen" Date: Sat, 29 Oct 2022 14:12:37 +0200 Subject: [PATCH] squash! DRAFT lib: stdint: Remove __SIZEOF_LONG_LONG__ guard. --- include/stdint.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/stdint.h b/include/stdint.h index 5cf9d319..bb2ab70d 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -55,9 +55,10 @@ typedef unsigned short uint16_t; typedef short int16_t; typedef unsigned uint32_t; typedef int int32_t; +#if HAVE_LONG_LONG typedef unsigned long long uint64_t; typedef long long int64_t; - +#endif typedef int intmax_t; typedef unsigned uintmax_t;