From 2b9191e5572f165ea88295094dcbf3f466684902 Mon Sep 17 00:00:00 2001 From: akr Date: Tue, 18 Nov 2014 15:13:05 +0000 Subject: * internal.h: Gather declarations in non-header files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index 36a2c184ff..5bbdbfb785 100644 --- a/numeric.c +++ b/numeric.c @@ -670,7 +670,6 @@ rb_float_new_in_heap(double d) static VALUE flo_to_s(VALUE flt) { - char *ruby_dtoa(double d_, int mode, int ndigits, int *decpt, int *sign, char **rve); enum {decimal_mant = DBL_MANT_DIG-DBL_DIG}; enum {float_dig = DBL_DIG+1}; char buf[float_dig + (decimal_mant + CHAR_BIT - 1) / CHAR_BIT + 10]; @@ -2776,7 +2775,6 @@ fix_uminus(VALUE num) VALUE rb_fix2str(VALUE x, int base) { - extern const char ruby_digitmap[]; char buf[SIZEOF_VALUE*CHAR_BIT + 2], *b = buf + sizeof buf; long val = FIX2LONG(x); int neg = 0; -- cgit v1.2.3