diff options
author | unknown <knielsen@mysql.com> | 2006-06-30 11:10:38 +0200 |
---|---|---|
committer | unknown <knielsen@mysql.com> | 2006-06-30 11:10:38 +0200 |
commit | 949ad5b439a3b96dd53b2901e5277e6a0c75e128 (patch) | |
tree | d65555193c3232e46e1f1dd3a816fc734624b19c /strings | |
parent | 29423c2d27092948fd950e827bbdf17226cfcb58 (diff) | |
download | mariadb-git-949ad5b439a3b96dd53b2901e5277e6a0c75e128.tar.gz |
Fix Windows build problem following previous push.
strings/strtod.c:
Fix Windows build problem, EOVERFLOW is defined in my_base.h on Windows.
Diffstat (limited to 'strings')
-rw-r--r-- | strings/strtod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/strings/strtod.c b/strings/strtod.c index c2534b509d6..e0910205d2f 100644 --- a/strings/strtod.c +++ b/strings/strtod.c @@ -26,7 +26,8 @@ */ -#include "my_global.h" /* Includes errno.h */ +#include "my_base.h" /* Defines EOVERFLOW on Windows */ +#include "my_global.h" /* Includes errno.h */ #include "m_ctype.h" #define MAX_DBL_EXP 308 |