HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.3.8/ext/-test-/notimplement/bug.c
#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_funcall2(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);
}