squash! DRAFT lib: stdint: Remove __SIZEOF_LONG_LONG__ guard.

This commit is contained in:
Jan (janneke) Nieuwenhuizen 2022-10-29 14:12:37 +02:00
parent 9803ffc1e5
commit 12b3a82d6a
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 1 deletions

View File

@ -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;