mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/intern.h (rb_big_odd_p, rb_big_even_p): move to
internal.h so that they are exported only for ruby itself. * internal.h (rb_big_odd_p, rb_big_even_p): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54196 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2019f8cb1c
commit
fa860a9497
3 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
Sat Mar 20 00:58:00 2016 Kenta Murata <mrkn@mrkn.jp>
|
||||
|
||||
* include/ruby/intern.h (rb_big_odd_p, rb_big_even_p): move to
|
||||
internal.h so that they are exported only for ruby itself.
|
||||
|
||||
* internal.h (rb_big_odd_p, rb_big_even_p): ditto.
|
||||
|
||||
Sat Mar 19 21:56:23 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* test/lib/test/unit.rb (Test::Unit::StatusLine#failed): defer
|
||||
|
|
|
@ -131,8 +131,6 @@ VALUE rb_big_or(VALUE, VALUE);
|
|||
VALUE rb_big_xor(VALUE, VALUE);
|
||||
VALUE rb_big_lshift(VALUE, VALUE);
|
||||
VALUE rb_big_rshift(VALUE, VALUE);
|
||||
VALUE rb_big_odd_p(VALUE);
|
||||
VALUE rb_big_even_p(VALUE);
|
||||
|
||||
/* For rb_integer_pack and rb_integer_unpack: */
|
||||
/* "MS" in MSWORD and MSBYTE means "most significant" */
|
||||
|
|
|
@ -744,6 +744,8 @@ extern const char ruby_digitmap[];
|
|||
VALUE rb_big_fdiv(VALUE x, VALUE y);
|
||||
VALUE rb_big_uminus(VALUE x);
|
||||
VALUE rb_big_hash(VALUE);
|
||||
VALUE rb_big_odd_p(VALUE);
|
||||
VALUE rb_big_even_p(VALUE);
|
||||
VALUE rb_integer_float_cmp(VALUE x, VALUE y);
|
||||
VALUE rb_integer_float_eq(VALUE x, VALUE y);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue