The size of `size_t` is 4 bytes on 32bit Windows platforms and 8 bytes
on 64bit Windows platforms. This patch defines the SIZEOF_SIZE_T symbols
for both instead of using only 4 for both.
#define SIZEOF_VOIDP 4\r
#define SIZEOF_FLOAT 4\r
#define SIZEOF_DOUBLE 8\r
+#define SIZEOF_SIZE_T 4\r
#define TOKEN_PASTE(x,y) x##y\r
#ifndef NORETURN\r
#if _MSC_VER > 1100\r
#define SIZEOF_VOIDP 8\r
#define SIZEOF_FLOAT 4\r
#define SIZEOF_DOUBLE 8\r
+#define SIZEOF_SIZE_T 8\r
#define TOKEN_PASTE(x,y) x##y\r
#ifndef NORETURN\r
#if _MSC_VER > 1100\r