Merge pull request #5742 from SparkiDev/sp_int_64bit_type

SP int: guess 64-bit type
This commit is contained in:
David Garske 2022-11-07 17:40:14 -08:00 committed by GitHub
commit 2e362a193e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,6 +146,11 @@ extern "C" {
#else
#error "Size of unsigned long long not detected"
#endif
#elif SP_ULONG_BITS == 32
/* Speculatively use long long as the 64-bit type as we don't have one
* otherwise. */
typedef unsigned long long sp_uint64;
typedef long long sp_int64;
#else
#define SP_ULLONG_BITS 0
#endif