diff options
author | Kenta Murata <[email protected]> | 2021-01-03 23:37:47 +0900 |
---|---|---|
committer | Kenta Murata <[email protected]> | 2021-01-03 23:38:21 +0900 |
commit | 0644f466b0ef017202712882b557ba32863002c4 (patch) | |
tree | 224b2c2a768af9708f968437d2726860e169c197 /ext/bigdecimal/bigdecimal.h | |
parent | bc4c862a763749a831dfe4e874229aae681ae0fd (diff) |
Include RUBY_EXTCONF_H if available
Diffstat (limited to 'ext/bigdecimal/bigdecimal.h')
-rw-r--r-- | ext/bigdecimal/bigdecimal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bigdecimal/bigdecimal.h b/ext/bigdecimal/bigdecimal.h index 900ebd412a..919583d04f 100644 --- a/ext/bigdecimal/bigdecimal.h +++ b/ext/bigdecimal/bigdecimal.h @@ -14,6 +14,10 @@ #include "ruby/ruby.h" #include <float.h> +#ifdef RUBY_EXTCONF_H +# include RUBY_EXTCONF_H +#endif + #if defined(__bool_true_false_are_defined) # /* Take that. */ |