blob: fe3979cbc55f1885c53a7da314e8cc8e737f4e81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "ruby.h"
#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}
void
Init_debug(void)
{
VALUE mBug = rb_define_module("Bug");
VALUE klass = rb_define_module_under(mBug, "Debug");
TEST_INIT_FUNCS(init);
}
|