aboutsummaryrefslogtreecommitdiffstats
path: root/internal.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-26 01:55:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-26 01:55:14 +0000
commit3bf422a41d55d99dca9712dcc003750a08b8fe94 (patch)
tree3a0dbb2a1e1f2a9c9a3ff0e4e1d4556cbca4fe48 /internal.h
parent86635bdb96e498f3b4dc250fcdd7dc04673a34c3 (diff)
downloadruby-3bf422a41d55d99dca9712dcc003750a08b8fe94.tar.gz
numeric.c: rb_int2str
* numeric.c (rb_int2str): conversion function to String for generic Integer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index e68e078e86..2f8c26f9e4 100644
--- a/internal.h
+++ b/internal.h
@@ -1014,6 +1014,7 @@ VALUE rb_int_mul(VALUE x, VALUE y);
VALUE rb_int_idiv(VALUE x, VALUE y);
VALUE rb_int_modulo(VALUE x, VALUE y);
VALUE rb_int_round(VALUE num, int ndigits);
+VALUE rb_int2str(VALUE num, int base);
VALUE rb_dbl_hash(double d);
VALUE rb_fix_plus(VALUE x, VALUE y);