mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
11 lines
179 B
C
11 lines
179 B
C
#include "ruby.h"
|
|
|
|
#define init(n) {void Init_##n(VALUE klass); Init_##n(klass);}
|
|
|
|
void
|
|
Init_fatal(void)
|
|
{
|
|
VALUE klass = rb_define_module("Bug");
|
|
TEST_INIT_FUNCS(init);
|
|
}
|