ruby/yarp/yarp_init.c
Takashi Kokubun 2acb27cad7 Fix -Wold-style-definition
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.
2023-06-21 13:51:39 -07:00

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);
}