diff options
-rw-r--r-- | include/my_global.h | 6 |
1 files 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 /* |