root/ext/-test-/proc/init.c

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

DEFINITIONS

This source file includes following definitions.
  1. Init_proc

#include "ruby.h"

#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}

void
Init_proc(void)
{
    VALUE mBug = rb_define_module("Bug");
    VALUE klass = rb_define_module_under(mBug, "Proc");
    TEST_INIT_FUNCS(init);
}

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