mirror of
https://github.com/json-c/json-c.git
synced 2026-04-01 03:19:06 +08:00
Issue #295: also check if size_t is the size of long long, to help support 64-bit Windows platforms.
This commit is contained in:
@@ -26,6 +26,8 @@
|
||||
#define SIZE_T_MAX UINT_MAX
|
||||
#elif SIZEOF_SIZE_T == SIZEOF_LONG
|
||||
#define SIZE_T_MAX ULONG_MAX
|
||||
#elif SIZEOF_SIZE_T == SIZEOF_LONG_LONG
|
||||
#define SIZE_T_MAX ULLONG_MAX
|
||||
#else
|
||||
#error Unable to determine size of size_t
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user