diff options
author | monty@mysql.com <> | 2006-06-30 02:25:35 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2006-06-30 02:25:35 +0300 |
commit | 8e2099295d09e74ecc8fbdfd98247deb90adfc58 (patch) | |
tree | 49d31bddbb621eb2ad5dc6fdaa0e992eb7f5869a /strings/strtod.c | |
parent | 747c17ffa38f52e981737d4fc56c95b1389f704f (diff) | |
download | mariadb-git-8e2099295d09e74ecc8fbdfd98247deb90adfc58.tar.gz |
Fixed include file usage
hp_test2 now works again
Fixed wrong cast, which caused problems with gcc 4.0 and floats in prepared statements (Bug #19694)
Diffstat (limited to 'strings/strtod.c')
-rw-r--r-- | strings/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/strings/strtod.c b/strings/strtod.c index 61f2c107abe..da1b4f4baa6 100644 --- a/strings/strtod.c +++ b/strings/strtod.c @@ -26,8 +26,8 @@ */ -#include "my_base.h" /* Includes errno.h */ -#include "m_ctype.h" +#include <my_global.h> /* Includes errno.h */ +#include <m_ctype.h> #define MAX_DBL_EXP 308 #define MAX_RESULT_FOR_MAX_EXP 1.79769313486232 |