summaryrefslogtreecommitdiff
path: root/strings/strtod.c
diff options
context:
space:
mode:
authorknielsen@mysql.com <>2006-06-30 11:10:38 +0200
committerknielsen@mysql.com <>2006-06-30 11:10:38 +0200
commita3019ab1965190088db006f0a488ec2352077229 (patch)
treed65555193c3232e46e1f1dd3a816fc734624b19c /strings/strtod.c
parent68db32613b921d3ef1bc6e5e35f6ad25976316d2 (diff)
downloadmariadb-git-a3019ab1965190088db006f0a488ec2352077229.tar.gz
Fix Windows build problem following previous push.
Diffstat (limited to 'strings/strtod.c')
-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