summaryrefslogtreecommitdiff
path: root/ext/-test-/notimplement/bug.c
blob: 8e9cae707a502b005b92b0ed18a54fc391002596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <ruby.h>

static VALUE
bug_funcall(int argc, VALUE *argv, VALUE self)
{
    if (argc < 1) rb_raise(rb_eArgError, "not enough argument");
    return rb_funcallv(self, rb_to_id(*argv), argc-1, argv+1);
}

void
Init_notimplement(void)
{
    VALUE mBug = rb_define_module("Bug");
    rb_define_module_function(mBug, "funcall", bug_funcall, -1);
    rb_define_module_function(mBug, "notimplement", rb_f_notimplement, -1);
}