diff options
author | monty@mysql.com <> | 2003-12-16 13:20:17 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2003-12-16 13:20:17 +0200 |
commit | 56f0abf7bb88c98adc4e65de032f63f40498b834 (patch) | |
tree | 7caf9e264c5defe6995ae178452a829c4064f97c /strings/strtoll.c | |
parent | 217226f9afcefb7918ce0aee5ac920dfdf73edf0 (diff) | |
download | mariadb-git-56f0abf7bb88c98adc4e65de032f63f40498b834.tar.gz |
Portability fixes (mostly test suite)
Make ENGINE= an alias for TYPE= (Compabiltiy with 4.1)
Fix when using symlinked data files and realpath() is not working
Diffstat (limited to 'strings/strtoll.c')
-rw-r--r-- | strings/strtoll.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/strings/strtoll.c b/strings/strtoll.c index 8d0ba21d576..b0b4ef328fc 100644 --- a/strings/strtoll.c +++ b/strings/strtoll.c @@ -16,8 +16,9 @@ /* This is defines strtoll() if neaded */ +#define strtoll glob_strtoll /* Fix for True64 */ + #include <my_global.h> -#include <m_string.h> #if !defined(HAVE_STRTOLL) && defined(HAVE_LONG_LONG) #define USE_LONGLONG #include "strto.c" |