DRAFT lib: stdint: Remove __SIZEOF_LONG_LONG__ guard.

* include/stdint.h (uint64_t, int64_t): Add unconditionally.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2022-10-26 15:56:40 +02:00
parent 31679d6e86
commit 3fd7ba82a6
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 0 additions and 2 deletions

View File

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