mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* internal.h: rb_rational_reciprocal is defined in rational.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bc11aa72d3
commit
aef7007477
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Jul 9 20:01:59 2011 Tadayoshi Funaba <tadf@dotrb.org>
|
||||
|
||||
* internal.h: rb_rational_reciprocal is defined in rational.c.
|
||||
|
||||
Sat Jul 9 19:48:31 2011 Tadayoshi Funaba <tadf@dotrb.org>
|
||||
|
||||
* internal.h: added declarations.
|
||||
|
|
|
@ -124,7 +124,6 @@ VALUE rb_math_sqrt(VALUE);
|
|||
void Init_newline(void);
|
||||
|
||||
/* numeric.c */
|
||||
VALUE rb_rational_reciprocal(VALUE x);
|
||||
int rb_num_to_uint(VALUE val, unsigned int *ret);
|
||||
int ruby_float_step(VALUE from, VALUE to, VALUE step, int excl);
|
||||
|
||||
|
@ -140,6 +139,7 @@ VALUE rb_proc_location(VALUE self);
|
|||
|
||||
/* rational.c */
|
||||
VALUE rb_lcm(VALUE x, VALUE y);
|
||||
VALUE rb_rational_reciprocal(VALUE x);
|
||||
|
||||
/* re.c */
|
||||
VALUE rb_reg_compile(VALUE str, int options, const char *sourcefile, int sourceline);
|
||||
|
|
Loading…
Reference in a new issue