mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
63fee73500
* include/ruby/missing.h (nextafter): New optional declaration. * missing/nextafter.c: New file. * numeric.c: Float#next_float and Float#prev_float implemented. [ruby-core:62562] [Feature #9834] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
11 lines
246 B
C
11 lines
246 B
C
#include "ruby.h"
|
|
|
|
#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}
|
|
|
|
void
|
|
Init_float(void)
|
|
{
|
|
VALUE mBug = rb_define_module("Bug");
|
|
VALUE klass = rb_define_class_under(mBug, "Float", rb_cObject);
|
|
TEST_INIT_FUNCS(init);
|
|
}
|