summaryrefslogtreecommitdiff
path: root/ext/-test-/rb_call_super_kw/rb_call_super_kw.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/-test-/rb_call_super_kw/rb_call_super_kw.c')
-rw-r--r--ext/-test-/rb_call_super_kw/rb_call_super_kw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/-test-/rb_call_super_kw/rb_call_super_kw.c b/ext/-test-/rb_call_super_kw/rb_call_super_kw.c
index 7f094545d2..61681ed733 100644
--- a/ext/-test-/rb_call_super_kw/rb_call_super_kw.c
+++ b/ext/-test-/rb_call_super_kw/rb_call_super_kw.c
@@ -7,7 +7,8 @@ rb_call_super_kw_m(int argc, VALUE *argv, VALUE self)
}
void
-Init_rb_call_super_kw(void) {
+Init_rb_call_super_kw(void)
+{
VALUE module = rb_define_module("Bug");
module = rb_define_module_under(module, "RbCallSuperKw");
rb_define_method(module, "m", rb_call_super_kw_m, -1);