Commit 949ad5b4 authored by unknown's avatar unknown

Fix Windows build problem following previous push.


strings/strtod.c:
  Fix Windows build problem, EOVERFLOW is defined in my_base.h on Windows.
parent 29423c2d
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment