summaryrefslogtreecommitdiff
path: root/strings/strtod.c
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-03-16 16:35:47 +0100
committerserg@serg.mylan <>2004-03-16 16:35:47 +0100
commitceec63f18aa0c2e4ee9c5f667cca3f1ffdeda15d (patch)
treea14f2d0da18b76c70fcf4ce8e3601d0014a43def /strings/strtod.c
parente970ff9e87ab1b9eb6e66f9deff9522ac6af3fdf (diff)
downloadmariadb-git-ceec63f18aa0c2e4ee9c5f667cca3f1ffdeda15d.tar.gz
EOVERFLOW moved to my_base.h - it is used not only in strtod.c
error message corrected
Diffstat (limited to 'strings/strtod.c')
-rw-r--r--strings/strtod.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/strings/strtod.c b/strings/strtod.c
index aa0f7aa4336..bc8105b8040 100644
--- a/strings/strtod.c
+++ b/strings/strtod.c
@@ -29,10 +29,6 @@
#include "my_base.h" /* Includes errno.h */
#include "m_ctype.h"
-#ifndef EOVERFLOW
-#define EOVERFLOW 84
-#endif
-
static double scaler10[] = {
1.0, 1e10, 1e20, 1e30, 1e40, 1e50, 1e60, 1e70, 1e80, 1e90
};