r13704@catbus: nickm | 2007-07-12 11:43:18 -0400

Backport r10566: build correctly when size_t is bigger than unsigned long


svn:r10803
This commit is contained in:
Nick Mathewson 2007-07-12 16:17:12 +00:00
parent 12a873acce
commit 5de93f2670
1 changed files with 2 additions and 2 deletions

View File

@ -292,9 +292,9 @@ typedef uint32_t uintptr_t;
#ifndef SIZE_T_MAX
#if (SIZEOF_SIZE_T == 4)
#define SIZE_T_MAX 0xfffffffful
#define SIZE_T_MAX UINT32_MAX
#elif (SIZEOF_SIZE_T == 8)
#define SIZE_T_MAX 0xfffffffffffffffful
#define SIZE_T_MAX UINT64_MAX
#else
#error "Can't define SIZE_T_MAX"
#endif