use powf() instead of pow() on MRB_USE_FLOAT

parent b4bc3956
......@@ -19,6 +19,7 @@
#define ceil(f) ceilf(f)
#define floor(f) floorf(f)
#define fmod(x,y) fmodf(x,y)
#define pow(x,y) powf(x,y)
#endif
static mrb_float
......
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