1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix Windows build problem following previous push.

strings/strtod.c:
  Fix Windows build problem, EOVERFLOW is defined in my_base.h on Windows.
This commit is contained in:
unknown
2006-06-30 11:10:38 +02:00
parent 29423c2d27
commit 949ad5b439

View File

@@ -26,7 +26,8 @@
*/
#include "my_global.h" /* Includes errno.h */
#include "my_base.h" /* Defines EOVERFLOW on Windows */
#include "my_global.h" /* Includes errno.h */
#include "m_ctype.h"
#define MAX_DBL_EXP 308