mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
9 lines
159 B
C
9 lines
159 B
C
#include "yarp/extension.h"
|
|
|
|
void ruby_init_ext(const char *name, void (*init)(void));
|
|
|
|
void
|
|
Init_YARP(void)
|
|
{
|
|
ruby_init_ext("yarp/yarp.so", Init_yarp);
|
|
}
|