diff options
author | unknown <konstantin@mysql.com> | 2003-12-05 12:52:07 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2003-12-05 12:52:07 +0300 |
commit | d4e3cc72195f6bbb450b3d1bad8fe9f735d6872a (patch) | |
tree | d370e39baa870d994436354e9061faffc14b5dd9 /include/my_global.h | |
parent | cea764f387b802152387398ade48dd34d5789348 (diff) | |
download | mariadb-git-d4e3cc72195f6bbb450b3d1bad8fe9f735d6872a.tar.gz |
attempt to make ULONGLONG_MAX work on Windows.
include/config-win.h:
ULONGLONG_MAX definition added
include/my_global.h:
comment about config-win.h added
Diffstat (limited to 'include/my_global.h')
-rw-r--r-- | include/my_global.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_global.h b/include/my_global.h index 68c331aa414..ca74cb07868 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -606,6 +606,7 @@ extern double my_atof(const char*); /* Some pre-ANSI-C99 systems like AIX 5.1 and Linux/GCC 2.95 define ULONGLONG_MAX, LONGLONG_MIN, LONGLONG_MAX; we use them if they're defined. + Also on Windows we define these constants by hand in config-win.h. */ #if defined(HAVE_LONG_LONG) && !defined(LONGLONG_MIN) |