diff options
author | unknown <joerg@trift2.> | 2006-07-17 19:38:46 +0200 |
---|---|---|
committer | unknown <joerg@trift2.> | 2006-07-17 19:38:46 +0200 |
commit | e732d3527f0e59b8a912fefd00b8dd9f489e5af0 (patch) | |
tree | 99aebe076897d0aa96e9fb6bd2b5c3cfebea20c9 /strings/strtod.c | |
parent | e7ea49dc0d6d4e958cf2a515edcf0fdfc99b8199 (diff) | |
download | mariadb-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.c | 2 |
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 |