mrb_flo_to_str: internal linkage

This commit is contained in:
cremno
2014-02-18 04:37:35 +01:00
parent 1838099e00
commit 61577e8d6b
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -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);
+1 -1
View File
@@ -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;