From 92a095480a8a31d6f374a712c262fc09ecec68dd Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 23 Aug 2016 08:00:09 +0000 Subject: goruby.c: call Init_golf [ci skip] * goruby.c (init_golf): call Init_golf, because ruby_init_ext only registers the function since r43514. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55993 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- goruby.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'goruby.c') diff --git a/goruby.c b/goruby.c index 99042f8440..5ac4c96d12 100644 --- a/goruby.c +++ b/goruby.c @@ -20,7 +20,8 @@ RUBY_EXTERN void ruby_init_ext(const char *name, void (*init)(void)); static VALUE init_golf(VALUE arg) { - ruby_init_ext("golf.so", Init_golf); + Init_golf(); + rb_provide("golf.so"); return arg; } -- cgit v1.2.3