mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
we don't support longlong less than 8 bytes
This commit is contained in:
parent
8fafe0f89b
commit
7e0e4b00c9
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue