From: K.Kosako Date: Thu, 2 Aug 2018 07:16:19 +0000 (+0900) Subject: fix SIZEOF_LONG_LONG value X-Git-Tag: v6.9.0~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1f20c663f1ae6ccf00c996f7ec6909416b07257;p=onig fix SIZEOF_LONG_LONG value --- diff --git a/src/config.h.win32 b/src/config.h.win32 index b9e5b9a..12609df 100644 --- a/src/config.h.win32 +++ b/src/config.h.win32 @@ -9,7 +9,7 @@ #define SIZEOF_INT 4 #define SIZEOF_SHORT 2 #define SIZEOF_LONG 4 -#define SIZEOF_LONG_LONG 0 +#define SIZEOF_LONG_LONG 8 #define SIZEOF___INT64 8 #define SIZEOF_OFF_T 4 #define SIZEOF_VOIDP 4 diff --git a/src/config.h.win64 b/src/config.h.win64 index 48626cc..e892086 100644 --- a/src/config.h.win64 +++ b/src/config.h.win64 @@ -9,7 +9,7 @@ #define SIZEOF_INT 4 #define SIZEOF_SHORT 2 #define SIZEOF_LONG 4 -#define SIZEOF_LONG_LONG 0 +#define SIZEOF_LONG_LONG 8 #define SIZEOF___INT64 8 #define SIZEOF_OFF_T 4 #define SIZEOF_VOIDP 8