diff options
author | unknown <monty@mashka.mysql.fi> | 2003-11-20 02:48:09 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-11-20 02:48:09 +0200 |
commit | 46401ab3842d29281161ddb4204d2f2959b8fbc7 (patch) | |
tree | 0a61e2dc180694c077416cd962cb3c948144686d /strings/my_strtoll10.c | |
parent | 29b99eaa0d91952a69839027396f64058e885b58 (diff) | |
download | mariadb-git-46401ab3842d29281161ddb4204d2f2959b8fbc7.tar.gz |
Portability fixes for AIX43
include/my_base.h:
Portability fix
include/my_global.h:
Portability fix for AIX43
(Having _Export gave a lot of errors/warnings and I think this is not needed anymore)
include/my_sys.h:
Remove compiler warning on AIX43 with xlc_r compiler
include/mysql.h:
Portability fix
innobase/fil/fil0fil.c:
Fixed compiler warnings (xlc_r)
libmysql/libmysql.c:
Portability fix
strings/my_strtoll10.c:
Portability fix (for AIX43)
Diffstat (limited to 'strings/my_strtoll10.c')
-rw-r--r-- | strings/my_strtoll10.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/strings/my_strtoll10.c b/strings/my_strtoll10.c index f795ef64728..117b9d16a65 100644 --- a/strings/my_strtoll10.c +++ b/strings/my_strtoll10.c @@ -18,6 +18,7 @@ #include <my_sys.h> #include <m_string.h> +#undef ULONGLONG_MAX #define ULONGLONG_MAX (~(ulonglong) 0) #define MAX_NEGATIVE_NUMBER ((ulonglong) LL(0x8000000000000000)) #define INIT_CNT 9 |