From 32e032ec4f1f6446c2d0116f3e79ec4613d738a5 Mon Sep 17 00:00:00 2001 From: "K.Kosako" Date: Fri, 28 Sep 2018 11:22:56 +0900 Subject: [PATCH] add SIZEOF_SIZE_T into config.h.windows.in --- src/config.h.windows.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/config.h.windows.in b/src/config.h.windows.in index c5b3307..f04372f 100644 --- a/src/config.h.windows.in +++ b/src/config.h.windows.in @@ -9,9 +9,11 @@ #define SIZEOF___INT64 8 #define SIZEOF_OFF_T 4 #ifdef _WIN64 -#define SIZEOF_VOIDP 8 +#define SIZEOF_VOIDP 8 +#define SIZEOF_SIZE_T 8 #else -#define SIZEOF_VOIDP 4 +#define SIZEOF_VOIDP 4 +#define SIZEOF_SIZE_T 4 #endif #define SIZEOF_FLOAT 4 #define SIZEOF_DOUBLE 8 -- 2.50.1