mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
283 B
C
15 lines
283 B
C
|
#include <ruby.h>
|
||
|
|
||
|
static VALUE
|
||
|
bug_funcall_callback(VALUE self, VALUE obj)
|
||
|
{
|
||
|
return rb_funcall(obj, rb_intern("callback"), 0);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
Init_bug(void)
|
||
|
{
|
||
|
VALUE mBug = rb_define_module("Bug");
|
||
|
rb_define_module_function(mBug, "funcall_callback", bug_funcall_callback, 1);
|
||
|
}
|