Commit bcd77200 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #463 from emboss/define_dbl_dig_conditionally

Define DBL_DIG only if it wasn't previously defined
parents 553b9405 a24fde18
...@@ -2598,7 +2598,10 @@ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, int badcheck) ...@@ -2598,7 +2598,10 @@ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, int badcheck)
double d; double d;
// const char *ellipsis = ""; // const char *ellipsis = "";
// int w; // int w;
#define DBL_DIG 16 #if !defined(DBL_DIG)
#define DBL_DIG 16
#endif
enum {max_width = 20}; enum {max_width = 20};
#define OutOfRange() (((w = end - p) > max_width) ? \ #define OutOfRange() (((w = end - p) > max_width) ? \
(w = max_width, ellipsis = "...") : \ (w = max_width, ellipsis = "...") : \
......
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