mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00

* cont.c (ruby_Init_{Continuation_body,Fiber_as_Coroutine}): prefixed with ruby_ to export. * ext/continuation/continuation.c, ext/fiber/fiber.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@21886 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
8 lines
110 B
C
8 lines
110 B
C
|
|
void ruby_Init_Continuation_body(void);
|
|
|
|
void
|
|
Init_continuation(void)
|
|
{
|
|
ruby_Init_Continuation_body();
|
|
}
|