summaryrefslogtreecommitdiff
path: root/strings/strtod.c
diff options
context:
space:
mode:
authorunknown <joerg@trift2.>2006-07-17 19:38:46 +0200
committerunknown <joerg@trift2.>2006-07-17 19:38:46 +0200
commite732d3527f0e59b8a912fefd00b8dd9f489e5af0 (patch)
tree99aebe076897d0aa96e9fb6bd2b5c3cfebea20c9 /strings/strtod.c
parente7ea49dc0d6d4e958cf2a515edcf0fdfc99b8199 (diff)
downloadmariadb-git-e732d3527f0e59b8a912fefd00b8dd9f489e5af0.tar.gz
strings/strtod.c : Ensure the definition of "EOVERFLOW" is available.
In 5.0, this is already solved, so that is a null-merge ("ul"). strings/strtod.c: This file needs the definition of "EOVERFLOW", which is on some platforms (Windows, OpenBSD) provided only by "my_base.h". As this in turn includes "my_global.h", the include file name can be changed.
Diffstat (limited to 'strings/strtod.c')
-rw-r--r--strings/strtod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/strtod.c b/strings/strtod.c
index da1b4f4baa6..1663cd61b78 100644
--- a/strings/strtod.c
+++ b/strings/strtod.c
@@ -26,7 +26,7 @@
*/
-#include <my_global.h> /* Includes errno.h */
+#include <my_base.h> /* Includes errno.h */
#include <m_ctype.h>
#define MAX_DBL_EXP 308