[Feature #19741] Added Init_YARP() to load from the yarp C extension

Init_YARP is called from inits.c, and it loads the YARP C extension
correctly
This commit is contained in:
Jemma Issroff 2023-06-20 11:50:11 -04:00 коммит произвёл Takashi Kokubun
Родитель d53e1f42ff
Коммит 08478fefca
1 изменённых файлов: 8 добавлений и 0 удалений

8
yarp/yarp_init.c Normal file
Просмотреть файл

@ -0,0 +1,8 @@
#include "yarp/extension.h"
void ruby_init_ext(const char *name, void (*init)(void));
void
Init_YARP() {
ruby_init_ext("yarp.so", Init_yarp);
}