From 7e0e4b00c971b81b5ffd18db4f1ea977233e98be Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Wed, 23 Feb 2011 18:43:29 +0100 Subject: [PATCH] we don't support longlong less than 8 bytes --- include/my_global.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/my_global.h b/include/my_global.h index ec22a57329b..5b70ba47b74 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -830,10 +830,10 @@ typedef SOCKET_SIZE_TYPE size_socket; #define strtok_r(A,B,C) strtok((A),(B)) #endif -/* This is from the old m-machine.h file */ - -#if SIZEOF_LONG_LONG > 4 +#if SIZEOF_LONG_LONG >= 8 #define HAVE_LONG_LONG 1 +#else +#error WHAT? sizeof(long long) < 8 ??? #endif /*