4 static VALUE
sf_new_zero(VALUE self
) {
6 return rb_float_new(flt
);
9 static VALUE
sf_new_point_five(VALUE self
) {
11 return rb_float_new(flt
);
14 void Init_subtend_float() {
16 cls
= rb_define_class("SubtendFloat", rb_cObject
);
17 rb_define_method(cls
, "sf_new_zero", sf_new_zero
, 0);
18 rb_define_method(cls
, "sf_new_point_five", sf_new_point_five
, 0);