summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorunknown <knielsen@mysql.com>2006-06-30 11:10:38 +0200
committerunknown <knielsen@mysql.com>2006-06-30 11:10:38 +0200
commit949ad5b439a3b96dd53b2901e5277e6a0c75e128 (patch)
treed65555193c3232e46e1f1dd3a816fc734624b19c /strings
parent29423c2d27092948fd950e827bbdf17226cfcb58 (diff)
downloadmariadb-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.c3
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