mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
10 lines
179 B
C
10 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);
|
|
}
|