root/ext/-test-/bug-5832/bug.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. bug_funcall_callback
  2. Init_bug_5832

#include <ruby.h>

static VALUE
bug_funcall_callback(VALUE self, VALUE obj)
{
    return rb_funcall(obj, rb_intern("callback"), 0);
}

void
Init_bug_5832(void)
{
    VALUE mBug = rb_define_module("Bug");
    rb_define_module_function(mBug, "funcall_callback", bug_funcall_callback, 1);
}

/* [previous][next][first][last][top][bottom][index][help] */