remove unnecessary MRB_API from mrb_num_div(); close #2578

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-08-30 16:15:31 +09:00
parent e91389f922
commit 296b0571be
+1 -1
View File
@@ -75,7 +75,7 @@ num_pow(mrb_state *mrb, mrb_value x)
* result.
*/
MRB_API mrb_value
mrb_value
mrb_num_div(mrb_state *mrb, mrb_value x, mrb_value y)
{
return mrb_float_value(mrb, mrb_to_flo(mrb, x) / mrb_to_flo(mrb, y));