summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi/ext/class_under_autoload_spec.c
blob: e0b1f249c0c905bf4d72309c034b220ff6bf37de (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_under_autoload_spec(void) {
  rb_define_class_under(rb_cObject, "ClassUnderAutoload", rb_cObject);
}

#ifdef __cplusplus
}
#endif