Commit 61577e8d authored by cremno's avatar cremno

mrb_flo_to_str: internal linkage

parent 1838099e
......@@ -16,7 +16,6 @@ extern "C" {
#define FIXABLE(f) (POSFIXABLE(f) && NEGFIXABLE(f))
mrb_value mrb_flo_to_fixnum(mrb_state *mrb, mrb_value val);
mrb_value mrb_flo_to_str(mrb_state *mrb, mrb_float flo);
mrb_value mrb_fixnum_to_str(mrb_state *mrb, mrb_value x, int base);
......
......@@ -106,7 +106,7 @@ num_div(mrb_state *mrb, mrb_value x)
* representation.
*/
mrb_value
static mrb_value
mrb_flo_to_str(mrb_state *mrb, mrb_float flo)
{
double n = (double)flo;
......
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