summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/ext/class_id_under_autoload_spec.c
blob: cc5550f0411ebec27b1d5f7a912ed5b2bd5b95d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "ruby.h"

#ifdef __cplusplus
extern "C" {
#endif

void Init_class_id_under_autoload_spec(void) {
  rb_define_class_id_under(rb_cObject, rb_intern("ClassIdUnderAutoload"), rb_cObject);
}

#ifdef __cplusplus
}
#endif