1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* goruby.c (init_golf): append suffix.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-10-28 06:32:22 +00:00
parent 06969b6bce
commit 106ce21e91

View file

@ -20,7 +20,7 @@ RUBY_EXTERN void ruby_init_ext(const char *name, void (*init)(void));
static VALUE static VALUE
init_golf(VALUE arg) init_golf(VALUE arg)
{ {
ruby_init_ext("golf", Init_golf); ruby_init_ext("golf.so", Init_golf);
return arg; return arg;
} }