From: Ryan Tarpine Date: 2001-07-21T23:40:09+09:00 Subject: [ruby-talk:18254] Re: Trouble with C extensions On Sat, 21 Jul 2001 17:08:10 +0900, Wai-Sun Chia wrote: > Ryan Tarpine wrote: > > > > VALUE cTest; > > void Init_Test() > > > > Change the above to: > > void Init_testlib() > > > Thanks, that completely fixed it! Does case matter? I initially used Init_Test and create_makefile("test"), but since the name test.so conflicted with test.rb, when test.rb required `test`, it ran itself twice! Ryan