* src/sheap.c (STATIC_HEAP_SIZE): Remove distinction between x86
and x86_64 to enable --with-wide-int build on 32-bit Cygwin.
#include <unistd.h>
-#ifdef __x86_64__
#ifdef ENABLE_CHECKING
#define STATIC_HEAP_SIZE (28 * 1024 * 1024)
#else
#define STATIC_HEAP_SIZE (19 * 1024 * 1024)
#endif
-#else /* x86 */
-#ifdef ENABLE_CHECKING
-#define STATIC_HEAP_SIZE (18 * 1024 * 1024)
-#else
-#define STATIC_HEAP_SIZE (13 * 1024 * 1024)
-#endif
-#endif /* x86 */
int debug_sheap = 0;