diff options
author | unknown <serg@serg.mylan> | 2004-03-16 16:35:47 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-03-16 16:35:47 +0100 |
commit | 9c6b9eba65f43584b31d35d5397770a064a05a05 (patch) | |
tree | a14f2d0da18b76c70fcf4ce8e3601d0014a43def /strings | |
parent | e1f771b23e6e87da26ed152e8f49c763c2cf8ecd (diff) | |
download | mariadb-git-9c6b9eba65f43584b31d35d5397770a064a05a05.tar.gz |
EOVERFLOW moved to my_base.h - it is used not only in strtod.c
error message corrected
include/my_base.h:
EOVERFLOW moved to my_base.h - it is used not only in strtod.c
mysql-test/r/variables.result:
error message corrected
mysql-test/t/variables.test:
error message corrected
sql/item_func.cc:
error message corrected
sql/sql_yacc.yy:
error message corrected
strings/strtod.c:
EOVERFLOW moved to my_base.h - it is used not only in strtod.c
Diffstat (limited to 'strings')
-rw-r--r-- | strings/strtod.c | 4 |
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 }; |