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

http://ci.rvm.jp/results/trunk-yjit@ruby-sp2-docker/4612329 Also, I changed the position of `{` to be consistent with the rest of the codebase.
9 lines
154 B
C
9 lines
154 B
C
#include "yarp/extension.h"
|
|
|
|
void ruby_init_ext(const char *name, void (*init)(void));
|
|
|
|
void
|
|
Init_YARP(void)
|
|
{
|
|
ruby_init_ext("yarp.so", Init_yarp);
|
|
}
|