summaryrefslogtreecommitdiff
path: root/ext/-test-/integer
diff options
context:
space:
mode:
Diffstat (limited to 'ext/-test-/integer')
-rw-r--r--ext/-test-/integer/core_ext.c16
-rw-r--r--ext/-test-/integer/depend857
-rw-r--r--ext/-test-/integer/my_integer.c6
3 files changed, 438 insertions, 441 deletions
diff --git a/ext/-test-/integer/core_ext.c b/ext/-test-/integer/core_ext.c
index 2062fa3afa..e364aa4b40 100644
--- a/ext/-test-/integer/core_ext.c
+++ b/ext/-test-/integer/core_ext.c
@@ -1,19 +1,19 @@
#include "internal/numeric.h"
static VALUE
-int_bignum_p(VALUE self)
+int_bignum_p(VALUE klass, VALUE self)
{
return RB_TYPE_P(self, T_BIGNUM) ? Qtrue : Qfalse;
}
static VALUE
-int_fixnum_p(VALUE self)
+int_fixnum_p(VALUE klass, VALUE self)
{
return FIXNUM_P(self) ? Qtrue : Qfalse;
}
static VALUE
-rb_int_to_bignum(VALUE x)
+rb_int_to_bignum(VALUE klass, VALUE x)
{
if (FIXNUM_P(x))
x = rb_int2big(FIX2LONG(x));
@@ -21,7 +21,7 @@ rb_int_to_bignum(VALUE x)
}
static VALUE
-positive_pow(VALUE x, VALUE y)
+positive_pow(VALUE klass, VALUE x, VALUE y)
{
return rb_int_positive_pow(NUM2LONG(x), NUM2ULONG(y));
}
@@ -29,8 +29,8 @@ positive_pow(VALUE x, VALUE y)
void
Init_core_ext(VALUE klass)
{
- rb_define_method(rb_cInteger, "bignum?", int_bignum_p, 0);
- rb_define_method(rb_cInteger, "fixnum?", int_fixnum_p, 0);
- rb_define_method(rb_cInteger, "to_bignum", rb_int_to_bignum, 0);
- rb_define_method(rb_cInteger, "positive_pow", positive_pow, 1);
+ rb_define_singleton_method(klass, "bignum?", int_bignum_p, 1);
+ rb_define_singleton_method(klass, "fixnum?", int_fixnum_p, 1);
+ rb_define_singleton_method(klass, "to_bignum", rb_int_to_bignum, 1);
+ rb_define_singleton_method(klass, "positive_pow", positive_pow, 2);
}
diff --git a/ext/-test-/integer/depend b/ext/-test-/integer/depend
index 3dee6bd8e6..d0589b5e5d 100644
--- a/ext/-test-/integer/depend
+++ b/ext/-test-/integer/depend
@@ -1,170 +1,169 @@
# AUTOGENERATED DEPENDENCIES START
core_ext.o: $(RUBY_EXTCONF_H)
core_ext.o: $(arch_hdrdir)/ruby/config.h
-core_ext.o: $(hdrdir)/ruby.h
-core_ext.o: $(hdrdir)/ruby/3/anyargs.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/char.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/double.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/fixnum.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/gid_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/int.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/intptr_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/long.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/long_long.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/mode_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/off_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/pid_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/short.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/size_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/st_data_t.h
-core_ext.o: $(hdrdir)/ruby/3/arithmetic/uid_t.h
-core_ext.o: $(hdrdir)/ruby/3/assume.h
-core_ext.o: $(hdrdir)/ruby/3/attr/alloc_size.h
-core_ext.o: $(hdrdir)/ruby/3/attr/artificial.h
-core_ext.o: $(hdrdir)/ruby/3/attr/cold.h
-core_ext.o: $(hdrdir)/ruby/3/attr/const.h
-core_ext.o: $(hdrdir)/ruby/3/attr/constexpr.h
-core_ext.o: $(hdrdir)/ruby/3/attr/deprecated.h
-core_ext.o: $(hdrdir)/ruby/3/attr/diagnose_if.h
-core_ext.o: $(hdrdir)/ruby/3/attr/enum_extensibility.h
-core_ext.o: $(hdrdir)/ruby/3/attr/error.h
-core_ext.o: $(hdrdir)/ruby/3/attr/flag_enum.h
-core_ext.o: $(hdrdir)/ruby/3/attr/forceinline.h
-core_ext.o: $(hdrdir)/ruby/3/attr/format.h
-core_ext.o: $(hdrdir)/ruby/3/attr/maybe_unused.h
-core_ext.o: $(hdrdir)/ruby/3/attr/noalias.h
-core_ext.o: $(hdrdir)/ruby/3/attr/nodiscard.h
-core_ext.o: $(hdrdir)/ruby/3/attr/noexcept.h
-core_ext.o: $(hdrdir)/ruby/3/attr/noinline.h
-core_ext.o: $(hdrdir)/ruby/3/attr/nonnull.h
-core_ext.o: $(hdrdir)/ruby/3/attr/noreturn.h
-core_ext.o: $(hdrdir)/ruby/3/attr/pure.h
-core_ext.o: $(hdrdir)/ruby/3/attr/restrict.h
-core_ext.o: $(hdrdir)/ruby/3/attr/returns_nonnull.h
-core_ext.o: $(hdrdir)/ruby/3/attr/warning.h
-core_ext.o: $(hdrdir)/ruby/3/attr/weakref.h
-core_ext.o: $(hdrdir)/ruby/3/cast.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is/apple.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is/clang.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is/gcc.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is/intel.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is/msvc.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_is/sunpro.h
-core_ext.o: $(hdrdir)/ruby/3/compiler_since.h
-core_ext.o: $(hdrdir)/ruby/3/config.h
-core_ext.o: $(hdrdir)/ruby/3/constant_p.h
-core_ext.o: $(hdrdir)/ruby/3/core.h
-core_ext.o: $(hdrdir)/ruby/3/core/rarray.h
-core_ext.o: $(hdrdir)/ruby/3/core/rbasic.h
-core_ext.o: $(hdrdir)/ruby/3/core/rbignum.h
-core_ext.o: $(hdrdir)/ruby/3/core/rclass.h
-core_ext.o: $(hdrdir)/ruby/3/core/rdata.h
-core_ext.o: $(hdrdir)/ruby/3/core/rfile.h
-core_ext.o: $(hdrdir)/ruby/3/core/rhash.h
-core_ext.o: $(hdrdir)/ruby/3/core/robject.h
-core_ext.o: $(hdrdir)/ruby/3/core/rregexp.h
-core_ext.o: $(hdrdir)/ruby/3/core/rstring.h
-core_ext.o: $(hdrdir)/ruby/3/core/rstruct.h
-core_ext.o: $(hdrdir)/ruby/3/core/rtypeddata.h
-core_ext.o: $(hdrdir)/ruby/3/ctype.h
-core_ext.o: $(hdrdir)/ruby/3/dllexport.h
-core_ext.o: $(hdrdir)/ruby/3/dosish.h
-core_ext.o: $(hdrdir)/ruby/3/error.h
-core_ext.o: $(hdrdir)/ruby/3/eval.h
-core_ext.o: $(hdrdir)/ruby/3/event.h
-core_ext.o: $(hdrdir)/ruby/3/fl_type.h
-core_ext.o: $(hdrdir)/ruby/3/gc.h
-core_ext.o: $(hdrdir)/ruby/3/glob.h
-core_ext.o: $(hdrdir)/ruby/3/globals.h
-core_ext.o: $(hdrdir)/ruby/3/has/attribute.h
-core_ext.o: $(hdrdir)/ruby/3/has/builtin.h
-core_ext.o: $(hdrdir)/ruby/3/has/c_attribute.h
-core_ext.o: $(hdrdir)/ruby/3/has/cpp_attribute.h
-core_ext.o: $(hdrdir)/ruby/3/has/declspec_attribute.h
-core_ext.o: $(hdrdir)/ruby/3/has/extension.h
-core_ext.o: $(hdrdir)/ruby/3/has/feature.h
-core_ext.o: $(hdrdir)/ruby/3/has/warning.h
-core_ext.o: $(hdrdir)/ruby/3/intern/array.h
-core_ext.o: $(hdrdir)/ruby/3/intern/bignum.h
-core_ext.o: $(hdrdir)/ruby/3/intern/class.h
-core_ext.o: $(hdrdir)/ruby/3/intern/compar.h
-core_ext.o: $(hdrdir)/ruby/3/intern/complex.h
-core_ext.o: $(hdrdir)/ruby/3/intern/cont.h
-core_ext.o: $(hdrdir)/ruby/3/intern/dir.h
-core_ext.o: $(hdrdir)/ruby/3/intern/enum.h
-core_ext.o: $(hdrdir)/ruby/3/intern/enumerator.h
-core_ext.o: $(hdrdir)/ruby/3/intern/error.h
-core_ext.o: $(hdrdir)/ruby/3/intern/eval.h
-core_ext.o: $(hdrdir)/ruby/3/intern/file.h
-core_ext.o: $(hdrdir)/ruby/3/intern/gc.h
-core_ext.o: $(hdrdir)/ruby/3/intern/hash.h
-core_ext.o: $(hdrdir)/ruby/3/intern/io.h
-core_ext.o: $(hdrdir)/ruby/3/intern/load.h
-core_ext.o: $(hdrdir)/ruby/3/intern/marshal.h
-core_ext.o: $(hdrdir)/ruby/3/intern/numeric.h
-core_ext.o: $(hdrdir)/ruby/3/intern/object.h
-core_ext.o: $(hdrdir)/ruby/3/intern/parse.h
-core_ext.o: $(hdrdir)/ruby/3/intern/proc.h
-core_ext.o: $(hdrdir)/ruby/3/intern/process.h
-core_ext.o: $(hdrdir)/ruby/3/intern/random.h
-core_ext.o: $(hdrdir)/ruby/3/intern/range.h
-core_ext.o: $(hdrdir)/ruby/3/intern/rational.h
-core_ext.o: $(hdrdir)/ruby/3/intern/re.h
-core_ext.o: $(hdrdir)/ruby/3/intern/ruby.h
-core_ext.o: $(hdrdir)/ruby/3/intern/select.h
-core_ext.o: $(hdrdir)/ruby/3/intern/select/largesize.h
-core_ext.o: $(hdrdir)/ruby/3/intern/signal.h
-core_ext.o: $(hdrdir)/ruby/3/intern/sprintf.h
-core_ext.o: $(hdrdir)/ruby/3/intern/string.h
-core_ext.o: $(hdrdir)/ruby/3/intern/struct.h
-core_ext.o: $(hdrdir)/ruby/3/intern/thread.h
-core_ext.o: $(hdrdir)/ruby/3/intern/time.h
-core_ext.o: $(hdrdir)/ruby/3/intern/variable.h
-core_ext.o: $(hdrdir)/ruby/3/intern/vm.h
-core_ext.o: $(hdrdir)/ruby/3/interpreter.h
-core_ext.o: $(hdrdir)/ruby/3/iterator.h
-core_ext.o: $(hdrdir)/ruby/3/memory.h
-core_ext.o: $(hdrdir)/ruby/3/method.h
-core_ext.o: $(hdrdir)/ruby/3/module.h
-core_ext.o: $(hdrdir)/ruby/3/newobj.h
-core_ext.o: $(hdrdir)/ruby/3/rgengc.h
-core_ext.o: $(hdrdir)/ruby/3/scan_args.h
-core_ext.o: $(hdrdir)/ruby/3/special_consts.h
-core_ext.o: $(hdrdir)/ruby/3/static_assert.h
-core_ext.o: $(hdrdir)/ruby/3/stdalign.h
-core_ext.o: $(hdrdir)/ruby/3/stdbool.h
-core_ext.o: $(hdrdir)/ruby/3/symbol.h
-core_ext.o: $(hdrdir)/ruby/3/token_paste.h
-core_ext.o: $(hdrdir)/ruby/3/value.h
-core_ext.o: $(hdrdir)/ruby/3/value_type.h
-core_ext.o: $(hdrdir)/ruby/3/variable.h
-core_ext.o: $(hdrdir)/ruby/3/warning_push.h
-core_ext.o: $(hdrdir)/ruby/3/xmalloc.h
core_ext.o: $(hdrdir)/ruby/assert.h
core_ext.o: $(hdrdir)/ruby/backward.h
core_ext.o: $(hdrdir)/ruby/backward/2/assume.h
core_ext.o: $(hdrdir)/ruby/backward/2/attributes.h
core_ext.o: $(hdrdir)/ruby/backward/2/bool.h
-core_ext.o: $(hdrdir)/ruby/backward/2/extern.h
core_ext.o: $(hdrdir)/ruby/backward/2/gcc_version_since.h
core_ext.o: $(hdrdir)/ruby/backward/2/inttypes.h
core_ext.o: $(hdrdir)/ruby/backward/2/limits.h
core_ext.o: $(hdrdir)/ruby/backward/2/long_long.h
-core_ext.o: $(hdrdir)/ruby/backward/2/r_cast.h
-core_ext.o: $(hdrdir)/ruby/backward/2/rmodule.h
core_ext.o: $(hdrdir)/ruby/backward/2/stdalign.h
core_ext.o: $(hdrdir)/ruby/backward/2/stdarg.h
core_ext.o: $(hdrdir)/ruby/defines.h
core_ext.o: $(hdrdir)/ruby/intern.h
+core_ext.o: $(hdrdir)/ruby/internal/abi.h
+core_ext.o: $(hdrdir)/ruby/internal/anyargs.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/char.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/double.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/fixnum.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/gid_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/int.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/intptr_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/long.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/long_long.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/mode_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/off_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/pid_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/short.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/size_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/st_data_t.h
+core_ext.o: $(hdrdir)/ruby/internal/arithmetic/uid_t.h
+core_ext.o: $(hdrdir)/ruby/internal/assume.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/alloc_size.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/artificial.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/cold.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/const.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/constexpr.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/deprecated.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/diagnose_if.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/enum_extensibility.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/error.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/flag_enum.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/forceinline.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/format.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/maybe_unused.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/noalias.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/nodiscard.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/noexcept.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/noinline.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/nonnull.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/noreturn.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/packed_struct.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/pure.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/restrict.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/returns_nonnull.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/warning.h
+core_ext.o: $(hdrdir)/ruby/internal/attr/weakref.h
+core_ext.o: $(hdrdir)/ruby/internal/cast.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is/apple.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is/clang.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is/gcc.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is/intel.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is/msvc.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_is/sunpro.h
+core_ext.o: $(hdrdir)/ruby/internal/compiler_since.h
+core_ext.o: $(hdrdir)/ruby/internal/config.h
+core_ext.o: $(hdrdir)/ruby/internal/constant_p.h
+core_ext.o: $(hdrdir)/ruby/internal/core.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rarray.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rbasic.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rbignum.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rclass.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rdata.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rfile.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rhash.h
+core_ext.o: $(hdrdir)/ruby/internal/core/robject.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rregexp.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rstring.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rstruct.h
+core_ext.o: $(hdrdir)/ruby/internal/core/rtypeddata.h
+core_ext.o: $(hdrdir)/ruby/internal/ctype.h
+core_ext.o: $(hdrdir)/ruby/internal/dllexport.h
+core_ext.o: $(hdrdir)/ruby/internal/dosish.h
+core_ext.o: $(hdrdir)/ruby/internal/error.h
+core_ext.o: $(hdrdir)/ruby/internal/eval.h
+core_ext.o: $(hdrdir)/ruby/internal/event.h
+core_ext.o: $(hdrdir)/ruby/internal/fl_type.h
+core_ext.o: $(hdrdir)/ruby/internal/gc.h
+core_ext.o: $(hdrdir)/ruby/internal/glob.h
+core_ext.o: $(hdrdir)/ruby/internal/globals.h
+core_ext.o: $(hdrdir)/ruby/internal/has/attribute.h
+core_ext.o: $(hdrdir)/ruby/internal/has/builtin.h
+core_ext.o: $(hdrdir)/ruby/internal/has/c_attribute.h
+core_ext.o: $(hdrdir)/ruby/internal/has/cpp_attribute.h
+core_ext.o: $(hdrdir)/ruby/internal/has/declspec_attribute.h
+core_ext.o: $(hdrdir)/ruby/internal/has/extension.h
+core_ext.o: $(hdrdir)/ruby/internal/has/feature.h
+core_ext.o: $(hdrdir)/ruby/internal/has/warning.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/array.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/bignum.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/class.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/compar.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/complex.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/cont.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/dir.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/enum.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/enumerator.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/error.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/eval.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/file.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/hash.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/io.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/load.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/marshal.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/numeric.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/object.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/parse.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/proc.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/process.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/random.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/range.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/rational.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/re.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/ruby.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/select.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/select/largesize.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/set.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/signal.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/sprintf.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/string.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/struct.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/thread.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/time.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/variable.h
+core_ext.o: $(hdrdir)/ruby/internal/intern/vm.h
+core_ext.o: $(hdrdir)/ruby/internal/interpreter.h
+core_ext.o: $(hdrdir)/ruby/internal/iterator.h
+core_ext.o: $(hdrdir)/ruby/internal/memory.h
+core_ext.o: $(hdrdir)/ruby/internal/method.h
+core_ext.o: $(hdrdir)/ruby/internal/module.h
+core_ext.o: $(hdrdir)/ruby/internal/newobj.h
+core_ext.o: $(hdrdir)/ruby/internal/scan_args.h
+core_ext.o: $(hdrdir)/ruby/internal/special_consts.h
+core_ext.o: $(hdrdir)/ruby/internal/static_assert.h
+core_ext.o: $(hdrdir)/ruby/internal/stdalign.h
+core_ext.o: $(hdrdir)/ruby/internal/stdbool.h
+core_ext.o: $(hdrdir)/ruby/internal/stdckdint.h
+core_ext.o: $(hdrdir)/ruby/internal/symbol.h
+core_ext.o: $(hdrdir)/ruby/internal/value.h
+core_ext.o: $(hdrdir)/ruby/internal/value_type.h
+core_ext.o: $(hdrdir)/ruby/internal/variable.h
+core_ext.o: $(hdrdir)/ruby/internal/warning_push.h
+core_ext.o: $(hdrdir)/ruby/internal/xmalloc.h
core_ext.o: $(hdrdir)/ruby/missing.h
core_ext.o: $(hdrdir)/ruby/ruby.h
core_ext.o: $(hdrdir)/ruby/st.h
core_ext.o: $(hdrdir)/ruby/subst.h
core_ext.o: $(top_srcdir)/internal.h
+core_ext.o: $(top_srcdir)/internal/basic_operators.h
core_ext.o: $(top_srcdir)/internal/bignum.h
core_ext.o: $(top_srcdir)/internal/bits.h
+core_ext.o: $(top_srcdir)/internal/compar.h
core_ext.o: $(top_srcdir)/internal/compilers.h
core_ext.o: $(top_srcdir)/internal/fixnum.h
core_ext.o: $(top_srcdir)/internal/numeric.h
@@ -175,162 +174,159 @@ core_ext.o: core_ext.c
init.o: $(RUBY_EXTCONF_H)
init.o: $(arch_hdrdir)/ruby/config.h
init.o: $(hdrdir)/ruby.h
-init.o: $(hdrdir)/ruby/3/anyargs.h
-init.o: $(hdrdir)/ruby/3/arithmetic.h
-init.o: $(hdrdir)/ruby/3/arithmetic/char.h
-init.o: $(hdrdir)/ruby/3/arithmetic/double.h
-init.o: $(hdrdir)/ruby/3/arithmetic/fixnum.h
-init.o: $(hdrdir)/ruby/3/arithmetic/gid_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/int.h
-init.o: $(hdrdir)/ruby/3/arithmetic/intptr_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/long.h
-init.o: $(hdrdir)/ruby/3/arithmetic/long_long.h
-init.o: $(hdrdir)/ruby/3/arithmetic/mode_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/off_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/pid_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/short.h
-init.o: $(hdrdir)/ruby/3/arithmetic/size_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/st_data_t.h
-init.o: $(hdrdir)/ruby/3/arithmetic/uid_t.h
-init.o: $(hdrdir)/ruby/3/assume.h
-init.o: $(hdrdir)/ruby/3/attr/alloc_size.h
-init.o: $(hdrdir)/ruby/3/attr/artificial.h
-init.o: $(hdrdir)/ruby/3/attr/cold.h
-init.o: $(hdrdir)/ruby/3/attr/const.h
-init.o: $(hdrdir)/ruby/3/attr/constexpr.h
-init.o: $(hdrdir)/ruby/3/attr/deprecated.h
-init.o: $(hdrdir)/ruby/3/attr/diagnose_if.h
-init.o: $(hdrdir)/ruby/3/attr/enum_extensibility.h
-init.o: $(hdrdir)/ruby/3/attr/error.h
-init.o: $(hdrdir)/ruby/3/attr/flag_enum.h
-init.o: $(hdrdir)/ruby/3/attr/forceinline.h
-init.o: $(hdrdir)/ruby/3/attr/format.h
-init.o: $(hdrdir)/ruby/3/attr/maybe_unused.h
-init.o: $(hdrdir)/ruby/3/attr/noalias.h
-init.o: $(hdrdir)/ruby/3/attr/nodiscard.h
-init.o: $(hdrdir)/ruby/3/attr/noexcept.h
-init.o: $(hdrdir)/ruby/3/attr/noinline.h
-init.o: $(hdrdir)/ruby/3/attr/nonnull.h
-init.o: $(hdrdir)/ruby/3/attr/noreturn.h
-init.o: $(hdrdir)/ruby/3/attr/pure.h
-init.o: $(hdrdir)/ruby/3/attr/restrict.h
-init.o: $(hdrdir)/ruby/3/attr/returns_nonnull.h
-init.o: $(hdrdir)/ruby/3/attr/warning.h
-init.o: $(hdrdir)/ruby/3/attr/weakref.h
-init.o: $(hdrdir)/ruby/3/cast.h
-init.o: $(hdrdir)/ruby/3/compiler_is.h
-init.o: $(hdrdir)/ruby/3/compiler_is/apple.h
-init.o: $(hdrdir)/ruby/3/compiler_is/clang.h
-init.o: $(hdrdir)/ruby/3/compiler_is/gcc.h
-init.o: $(hdrdir)/ruby/3/compiler_is/intel.h
-init.o: $(hdrdir)/ruby/3/compiler_is/msvc.h
-init.o: $(hdrdir)/ruby/3/compiler_is/sunpro.h
-init.o: $(hdrdir)/ruby/3/compiler_since.h
-init.o: $(hdrdir)/ruby/3/config.h
-init.o: $(hdrdir)/ruby/3/constant_p.h
-init.o: $(hdrdir)/ruby/3/core.h
-init.o: $(hdrdir)/ruby/3/core/rarray.h
-init.o: $(hdrdir)/ruby/3/core/rbasic.h
-init.o: $(hdrdir)/ruby/3/core/rbignum.h
-init.o: $(hdrdir)/ruby/3/core/rclass.h
-init.o: $(hdrdir)/ruby/3/core/rdata.h
-init.o: $(hdrdir)/ruby/3/core/rfile.h
-init.o: $(hdrdir)/ruby/3/core/rhash.h
-init.o: $(hdrdir)/ruby/3/core/robject.h
-init.o: $(hdrdir)/ruby/3/core/rregexp.h
-init.o: $(hdrdir)/ruby/3/core/rstring.h
-init.o: $(hdrdir)/ruby/3/core/rstruct.h
-init.o: $(hdrdir)/ruby/3/core/rtypeddata.h
-init.o: $(hdrdir)/ruby/3/ctype.h
-init.o: $(hdrdir)/ruby/3/dllexport.h
-init.o: $(hdrdir)/ruby/3/dosish.h
-init.o: $(hdrdir)/ruby/3/error.h
-init.o: $(hdrdir)/ruby/3/eval.h
-init.o: $(hdrdir)/ruby/3/event.h
-init.o: $(hdrdir)/ruby/3/fl_type.h
-init.o: $(hdrdir)/ruby/3/gc.h
-init.o: $(hdrdir)/ruby/3/glob.h
-init.o: $(hdrdir)/ruby/3/globals.h
-init.o: $(hdrdir)/ruby/3/has/attribute.h
-init.o: $(hdrdir)/ruby/3/has/builtin.h
-init.o: $(hdrdir)/ruby/3/has/c_attribute.h
-init.o: $(hdrdir)/ruby/3/has/cpp_attribute.h
-init.o: $(hdrdir)/ruby/3/has/declspec_attribute.h
-init.o: $(hdrdir)/ruby/3/has/extension.h
-init.o: $(hdrdir)/ruby/3/has/feature.h
-init.o: $(hdrdir)/ruby/3/has/warning.h
-init.o: $(hdrdir)/ruby/3/intern/array.h
-init.o: $(hdrdir)/ruby/3/intern/bignum.h
-init.o: $(hdrdir)/ruby/3/intern/class.h
-init.o: $(hdrdir)/ruby/3/intern/compar.h
-init.o: $(hdrdir)/ruby/3/intern/complex.h
-init.o: $(hdrdir)/ruby/3/intern/cont.h
-init.o: $(hdrdir)/ruby/3/intern/dir.h
-init.o: $(hdrdir)/ruby/3/intern/enum.h
-init.o: $(hdrdir)/ruby/3/intern/enumerator.h
-init.o: $(hdrdir)/ruby/3/intern/error.h
-init.o: $(hdrdir)/ruby/3/intern/eval.h
-init.o: $(hdrdir)/ruby/3/intern/file.h
-init.o: $(hdrdir)/ruby/3/intern/gc.h
-init.o: $(hdrdir)/ruby/3/intern/hash.h
-init.o: $(hdrdir)/ruby/3/intern/io.h
-init.o: $(hdrdir)/ruby/3/intern/load.h
-init.o: $(hdrdir)/ruby/3/intern/marshal.h
-init.o: $(hdrdir)/ruby/3/intern/numeric.h
-init.o: $(hdrdir)/ruby/3/intern/object.h
-init.o: $(hdrdir)/ruby/3/intern/parse.h
-init.o: $(hdrdir)/ruby/3/intern/proc.h
-init.o: $(hdrdir)/ruby/3/intern/process.h
-init.o: $(hdrdir)/ruby/3/intern/random.h
-init.o: $(hdrdir)/ruby/3/intern/range.h
-init.o: $(hdrdir)/ruby/3/intern/rational.h
-init.o: $(hdrdir)/ruby/3/intern/re.h
-init.o: $(hdrdir)/ruby/3/intern/ruby.h
-init.o: $(hdrdir)/ruby/3/intern/select.h
-init.o: $(hdrdir)/ruby/3/intern/select/largesize.h
-init.o: $(hdrdir)/ruby/3/intern/signal.h
-init.o: $(hdrdir)/ruby/3/intern/sprintf.h
-init.o: $(hdrdir)/ruby/3/intern/string.h
-init.o: $(hdrdir)/ruby/3/intern/struct.h
-init.o: $(hdrdir)/ruby/3/intern/thread.h
-init.o: $(hdrdir)/ruby/3/intern/time.h
-init.o: $(hdrdir)/ruby/3/intern/variable.h
-init.o: $(hdrdir)/ruby/3/intern/vm.h
-init.o: $(hdrdir)/ruby/3/interpreter.h
-init.o: $(hdrdir)/ruby/3/iterator.h
-init.o: $(hdrdir)/ruby/3/memory.h
-init.o: $(hdrdir)/ruby/3/method.h
-init.o: $(hdrdir)/ruby/3/module.h
-init.o: $(hdrdir)/ruby/3/newobj.h
-init.o: $(hdrdir)/ruby/3/rgengc.h
-init.o: $(hdrdir)/ruby/3/scan_args.h
-init.o: $(hdrdir)/ruby/3/special_consts.h
-init.o: $(hdrdir)/ruby/3/static_assert.h
-init.o: $(hdrdir)/ruby/3/stdalign.h
-init.o: $(hdrdir)/ruby/3/stdbool.h
-init.o: $(hdrdir)/ruby/3/symbol.h
-init.o: $(hdrdir)/ruby/3/token_paste.h
-init.o: $(hdrdir)/ruby/3/value.h
-init.o: $(hdrdir)/ruby/3/value_type.h
-init.o: $(hdrdir)/ruby/3/variable.h
-init.o: $(hdrdir)/ruby/3/warning_push.h
-init.o: $(hdrdir)/ruby/3/xmalloc.h
init.o: $(hdrdir)/ruby/assert.h
init.o: $(hdrdir)/ruby/backward.h
init.o: $(hdrdir)/ruby/backward/2/assume.h
init.o: $(hdrdir)/ruby/backward/2/attributes.h
init.o: $(hdrdir)/ruby/backward/2/bool.h
-init.o: $(hdrdir)/ruby/backward/2/extern.h
-init.o: $(hdrdir)/ruby/backward/2/gcc_version_since.h
init.o: $(hdrdir)/ruby/backward/2/inttypes.h
init.o: $(hdrdir)/ruby/backward/2/limits.h
init.o: $(hdrdir)/ruby/backward/2/long_long.h
-init.o: $(hdrdir)/ruby/backward/2/r_cast.h
-init.o: $(hdrdir)/ruby/backward/2/rmodule.h
init.o: $(hdrdir)/ruby/backward/2/stdalign.h
init.o: $(hdrdir)/ruby/backward/2/stdarg.h
init.o: $(hdrdir)/ruby/defines.h
init.o: $(hdrdir)/ruby/intern.h
+init.o: $(hdrdir)/ruby/internal/abi.h
+init.o: $(hdrdir)/ruby/internal/anyargs.h
+init.o: $(hdrdir)/ruby/internal/arithmetic.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/char.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/double.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/fixnum.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/gid_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/int.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/intptr_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/long.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/long_long.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/mode_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/off_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/pid_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/short.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/size_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/st_data_t.h
+init.o: $(hdrdir)/ruby/internal/arithmetic/uid_t.h
+init.o: $(hdrdir)/ruby/internal/assume.h
+init.o: $(hdrdir)/ruby/internal/attr/alloc_size.h
+init.o: $(hdrdir)/ruby/internal/attr/artificial.h
+init.o: $(hdrdir)/ruby/internal/attr/cold.h
+init.o: $(hdrdir)/ruby/internal/attr/const.h
+init.o: $(hdrdir)/ruby/internal/attr/constexpr.h
+init.o: $(hdrdir)/ruby/internal/attr/deprecated.h
+init.o: $(hdrdir)/ruby/internal/attr/diagnose_if.h
+init.o: $(hdrdir)/ruby/internal/attr/enum_extensibility.h
+init.o: $(hdrdir)/ruby/internal/attr/error.h
+init.o: $(hdrdir)/ruby/internal/attr/flag_enum.h
+init.o: $(hdrdir)/ruby/internal/attr/forceinline.h
+init.o: $(hdrdir)/ruby/internal/attr/format.h
+init.o: $(hdrdir)/ruby/internal/attr/maybe_unused.h
+init.o: $(hdrdir)/ruby/internal/attr/noalias.h
+init.o: $(hdrdir)/ruby/internal/attr/nodiscard.h
+init.o: $(hdrdir)/ruby/internal/attr/noexcept.h
+init.o: $(hdrdir)/ruby/internal/attr/noinline.h
+init.o: $(hdrdir)/ruby/internal/attr/nonnull.h
+init.o: $(hdrdir)/ruby/internal/attr/noreturn.h
+init.o: $(hdrdir)/ruby/internal/attr/packed_struct.h
+init.o: $(hdrdir)/ruby/internal/attr/pure.h
+init.o: $(hdrdir)/ruby/internal/attr/restrict.h
+init.o: $(hdrdir)/ruby/internal/attr/returns_nonnull.h
+init.o: $(hdrdir)/ruby/internal/attr/warning.h
+init.o: $(hdrdir)/ruby/internal/attr/weakref.h
+init.o: $(hdrdir)/ruby/internal/cast.h
+init.o: $(hdrdir)/ruby/internal/compiler_is.h
+init.o: $(hdrdir)/ruby/internal/compiler_is/apple.h
+init.o: $(hdrdir)/ruby/internal/compiler_is/clang.h
+init.o: $(hdrdir)/ruby/internal/compiler_is/gcc.h
+init.o: $(hdrdir)/ruby/internal/compiler_is/intel.h
+init.o: $(hdrdir)/ruby/internal/compiler_is/msvc.h
+init.o: $(hdrdir)/ruby/internal/compiler_is/sunpro.h
+init.o: $(hdrdir)/ruby/internal/compiler_since.h
+init.o: $(hdrdir)/ruby/internal/config.h
+init.o: $(hdrdir)/ruby/internal/constant_p.h
+init.o: $(hdrdir)/ruby/internal/core.h
+init.o: $(hdrdir)/ruby/internal/core/rarray.h
+init.o: $(hdrdir)/ruby/internal/core/rbasic.h
+init.o: $(hdrdir)/ruby/internal/core/rbignum.h
+init.o: $(hdrdir)/ruby/internal/core/rclass.h
+init.o: $(hdrdir)/ruby/internal/core/rdata.h
+init.o: $(hdrdir)/ruby/internal/core/rfile.h
+init.o: $(hdrdir)/ruby/internal/core/rhash.h
+init.o: $(hdrdir)/ruby/internal/core/robject.h
+init.o: $(hdrdir)/ruby/internal/core/rregexp.h
+init.o: $(hdrdir)/ruby/internal/core/rstring.h
+init.o: $(hdrdir)/ruby/internal/core/rstruct.h
+init.o: $(hdrdir)/ruby/internal/core/rtypeddata.h
+init.o: $(hdrdir)/ruby/internal/ctype.h
+init.o: $(hdrdir)/ruby/internal/dllexport.h
+init.o: $(hdrdir)/ruby/internal/dosish.h
+init.o: $(hdrdir)/ruby/internal/error.h
+init.o: $(hdrdir)/ruby/internal/eval.h
+init.o: $(hdrdir)/ruby/internal/event.h
+init.o: $(hdrdir)/ruby/internal/fl_type.h
+init.o: $(hdrdir)/ruby/internal/gc.h
+init.o: $(hdrdir)/ruby/internal/glob.h
+init.o: $(hdrdir)/ruby/internal/globals.h
+init.o: $(hdrdir)/ruby/internal/has/attribute.h
+init.o: $(hdrdir)/ruby/internal/has/builtin.h
+init.o: $(hdrdir)/ruby/internal/has/c_attribute.h
+init.o: $(hdrdir)/ruby/internal/has/cpp_attribute.h
+init.o: $(hdrdir)/ruby/internal/has/declspec_attribute.h
+init.o: $(hdrdir)/ruby/internal/has/extension.h
+init.o: $(hdrdir)/ruby/internal/has/feature.h
+init.o: $(hdrdir)/ruby/internal/has/warning.h
+init.o: $(hdrdir)/ruby/internal/intern/array.h
+init.o: $(hdrdir)/ruby/internal/intern/bignum.h
+init.o: $(hdrdir)/ruby/internal/intern/class.h
+init.o: $(hdrdir)/ruby/internal/intern/compar.h
+init.o: $(hdrdir)/ruby/internal/intern/complex.h
+init.o: $(hdrdir)/ruby/internal/intern/cont.h
+init.o: $(hdrdir)/ruby/internal/intern/dir.h
+init.o: $(hdrdir)/ruby/internal/intern/enum.h
+init.o: $(hdrdir)/ruby/internal/intern/enumerator.h
+init.o: $(hdrdir)/ruby/internal/intern/error.h
+init.o: $(hdrdir)/ruby/internal/intern/eval.h
+init.o: $(hdrdir)/ruby/internal/intern/file.h
+init.o: $(hdrdir)/ruby/internal/intern/hash.h
+init.o: $(hdrdir)/ruby/internal/intern/io.h
+init.o: $(hdrdir)/ruby/internal/intern/load.h
+init.o: $(hdrdir)/ruby/internal/intern/marshal.h
+init.o: $(hdrdir)/ruby/internal/intern/numeric.h
+init.o: $(hdrdir)/ruby/internal/intern/object.h
+init.o: $(hdrdir)/ruby/internal/intern/parse.h
+init.o: $(hdrdir)/ruby/internal/intern/proc.h
+init.o: $(hdrdir)/ruby/internal/intern/process.h
+init.o: $(hdrdir)/ruby/internal/intern/random.h
+init.o: $(hdrdir)/ruby/internal/intern/range.h
+init.o: $(hdrdir)/ruby/internal/intern/rational.h
+init.o: $(hdrdir)/ruby/internal/intern/re.h
+init.o: $(hdrdir)/ruby/internal/intern/ruby.h
+init.o: $(hdrdir)/ruby/internal/intern/select.h
+init.o: $(hdrdir)/ruby/internal/intern/select/largesize.h
+init.o: $(hdrdir)/ruby/internal/intern/set.h
+init.o: $(hdrdir)/ruby/internal/intern/signal.h
+init.o: $(hdrdir)/ruby/internal/intern/sprintf.h
+init.o: $(hdrdir)/ruby/internal/intern/string.h
+init.o: $(hdrdir)/ruby/internal/intern/struct.h
+init.o: $(hdrdir)/ruby/internal/intern/thread.h
+init.o: $(hdrdir)/ruby/internal/intern/time.h
+init.o: $(hdrdir)/ruby/internal/intern/variable.h
+init.o: $(hdrdir)/ruby/internal/intern/vm.h
+init.o: $(hdrdir)/ruby/internal/interpreter.h
+init.o: $(hdrdir)/ruby/internal/iterator.h
+init.o: $(hdrdir)/ruby/internal/memory.h
+init.o: $(hdrdir)/ruby/internal/method.h
+init.o: $(hdrdir)/ruby/internal/module.h
+init.o: $(hdrdir)/ruby/internal/newobj.h
+init.o: $(hdrdir)/ruby/internal/scan_args.h
+init.o: $(hdrdir)/ruby/internal/special_consts.h
+init.o: $(hdrdir)/ruby/internal/static_assert.h
+init.o: $(hdrdir)/ruby/internal/stdalign.h
+init.o: $(hdrdir)/ruby/internal/stdbool.h
+init.o: $(hdrdir)/ruby/internal/stdckdint.h
+init.o: $(hdrdir)/ruby/internal/symbol.h
+init.o: $(hdrdir)/ruby/internal/value.h
+init.o: $(hdrdir)/ruby/internal/value_type.h
+init.o: $(hdrdir)/ruby/internal/variable.h
+init.o: $(hdrdir)/ruby/internal/warning_push.h
+init.o: $(hdrdir)/ruby/internal/xmalloc.h
init.o: $(hdrdir)/ruby/missing.h
init.o: $(hdrdir)/ruby/ruby.h
init.o: $(hdrdir)/ruby/st.h
@@ -339,162 +335,159 @@ init.o: init.c
my_integer.o: $(RUBY_EXTCONF_H)
my_integer.o: $(arch_hdrdir)/ruby/config.h
my_integer.o: $(hdrdir)/ruby.h
-my_integer.o: $(hdrdir)/ruby/3/anyargs.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/char.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/double.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/fixnum.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/gid_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/int.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/intptr_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/long.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/long_long.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/mode_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/off_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/pid_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/short.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/size_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/st_data_t.h
-my_integer.o: $(hdrdir)/ruby/3/arithmetic/uid_t.h
-my_integer.o: $(hdrdir)/ruby/3/assume.h
-my_integer.o: $(hdrdir)/ruby/3/attr/alloc_size.h
-my_integer.o: $(hdrdir)/ruby/3/attr/artificial.h
-my_integer.o: $(hdrdir)/ruby/3/attr/cold.h
-my_integer.o: $(hdrdir)/ruby/3/attr/const.h
-my_integer.o: $(hdrdir)/ruby/3/attr/constexpr.h
-my_integer.o: $(hdrdir)/ruby/3/attr/deprecated.h
-my_integer.o: $(hdrdir)/ruby/3/attr/diagnose_if.h
-my_integer.o: $(hdrdir)/ruby/3/attr/enum_extensibility.h
-my_integer.o: $(hdrdir)/ruby/3/attr/error.h
-my_integer.o: $(hdrdir)/ruby/3/attr/flag_enum.h
-my_integer.o: $(hdrdir)/ruby/3/attr/forceinline.h
-my_integer.o: $(hdrdir)/ruby/3/attr/format.h
-my_integer.o: $(hdrdir)/ruby/3/attr/maybe_unused.h
-my_integer.o: $(hdrdir)/ruby/3/attr/noalias.h
-my_integer.o: $(hdrdir)/ruby/3/attr/nodiscard.h
-my_integer.o: $(hdrdir)/ruby/3/attr/noexcept.h
-my_integer.o: $(hdrdir)/ruby/3/attr/noinline.h
-my_integer.o: $(hdrdir)/ruby/3/attr/nonnull.h
-my_integer.o: $(hdrdir)/ruby/3/attr/noreturn.h
-my_integer.o: $(hdrdir)/ruby/3/attr/pure.h
-my_integer.o: $(hdrdir)/ruby/3/attr/restrict.h
-my_integer.o: $(hdrdir)/ruby/3/attr/returns_nonnull.h
-my_integer.o: $(hdrdir)/ruby/3/attr/warning.h
-my_integer.o: $(hdrdir)/ruby/3/attr/weakref.h
-my_integer.o: $(hdrdir)/ruby/3/cast.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is/apple.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is/clang.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is/gcc.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is/intel.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is/msvc.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_is/sunpro.h
-my_integer.o: $(hdrdir)/ruby/3/compiler_since.h
-my_integer.o: $(hdrdir)/ruby/3/config.h
-my_integer.o: $(hdrdir)/ruby/3/constant_p.h
-my_integer.o: $(hdrdir)/ruby/3/core.h
-my_integer.o: $(hdrdir)/ruby/3/core/rarray.h
-my_integer.o: $(hdrdir)/ruby/3/core/rbasic.h
-my_integer.o: $(hdrdir)/ruby/3/core/rbignum.h
-my_integer.o: $(hdrdir)/ruby/3/core/rclass.h
-my_integer.o: $(hdrdir)/ruby/3/core/rdata.h
-my_integer.o: $(hdrdir)/ruby/3/core/rfile.h
-my_integer.o: $(hdrdir)/ruby/3/core/rhash.h
-my_integer.o: $(hdrdir)/ruby/3/core/robject.h
-my_integer.o: $(hdrdir)/ruby/3/core/rregexp.h
-my_integer.o: $(hdrdir)/ruby/3/core/rstring.h
-my_integer.o: $(hdrdir)/ruby/3/core/rstruct.h
-my_integer.o: $(hdrdir)/ruby/3/core/rtypeddata.h
-my_integer.o: $(hdrdir)/ruby/3/ctype.h
-my_integer.o: $(hdrdir)/ruby/3/dllexport.h
-my_integer.o: $(hdrdir)/ruby/3/dosish.h
-my_integer.o: $(hdrdir)/ruby/3/error.h
-my_integer.o: $(hdrdir)/ruby/3/eval.h
-my_integer.o: $(hdrdir)/ruby/3/event.h
-my_integer.o: $(hdrdir)/ruby/3/fl_type.h
-my_integer.o: $(hdrdir)/ruby/3/gc.h
-my_integer.o: $(hdrdir)/ruby/3/glob.h
-my_integer.o: $(hdrdir)/ruby/3/globals.h
-my_integer.o: $(hdrdir)/ruby/3/has/attribute.h
-my_integer.o: $(hdrdir)/ruby/3/has/builtin.h
-my_integer.o: $(hdrdir)/ruby/3/has/c_attribute.h
-my_integer.o: $(hdrdir)/ruby/3/has/cpp_attribute.h
-my_integer.o: $(hdrdir)/ruby/3/has/declspec_attribute.h
-my_integer.o: $(hdrdir)/ruby/3/has/extension.h
-my_integer.o: $(hdrdir)/ruby/3/has/feature.h
-my_integer.o: $(hdrdir)/ruby/3/has/warning.h
-my_integer.o: $(hdrdir)/ruby/3/intern/array.h
-my_integer.o: $(hdrdir)/ruby/3/intern/bignum.h
-my_integer.o: $(hdrdir)/ruby/3/intern/class.h
-my_integer.o: $(hdrdir)/ruby/3/intern/compar.h
-my_integer.o: $(hdrdir)/ruby/3/intern/complex.h
-my_integer.o: $(hdrdir)/ruby/3/intern/cont.h
-my_integer.o: $(hdrdir)/ruby/3/intern/dir.h
-my_integer.o: $(hdrdir)/ruby/3/intern/enum.h
-my_integer.o: $(hdrdir)/ruby/3/intern/enumerator.h
-my_integer.o: $(hdrdir)/ruby/3/intern/error.h
-my_integer.o: $(hdrdir)/ruby/3/intern/eval.h
-my_integer.o: $(hdrdir)/ruby/3/intern/file.h
-my_integer.o: $(hdrdir)/ruby/3/intern/gc.h
-my_integer.o: $(hdrdir)/ruby/3/intern/hash.h
-my_integer.o: $(hdrdir)/ruby/3/intern/io.h
-my_integer.o: $(hdrdir)/ruby/3/intern/load.h
-my_integer.o: $(hdrdir)/ruby/3/intern/marshal.h
-my_integer.o: $(hdrdir)/ruby/3/intern/numeric.h
-my_integer.o: $(hdrdir)/ruby/3/intern/object.h
-my_integer.o: $(hdrdir)/ruby/3/intern/parse.h
-my_integer.o: $(hdrdir)/ruby/3/intern/proc.h
-my_integer.o: $(hdrdir)/ruby/3/intern/process.h
-my_integer.o: $(hdrdir)/ruby/3/intern/random.h
-my_integer.o: $(hdrdir)/ruby/3/intern/range.h
-my_integer.o: $(hdrdir)/ruby/3/intern/rational.h
-my_integer.o: $(hdrdir)/ruby/3/intern/re.h
-my_integer.o: $(hdrdir)/ruby/3/intern/ruby.h
-my_integer.o: $(hdrdir)/ruby/3/intern/select.h
-my_integer.o: $(hdrdir)/ruby/3/intern/select/largesize.h
-my_integer.o: $(hdrdir)/ruby/3/intern/signal.h
-my_integer.o: $(hdrdir)/ruby/3/intern/sprintf.h
-my_integer.o: $(hdrdir)/ruby/3/intern/string.h
-my_integer.o: $(hdrdir)/ruby/3/intern/struct.h
-my_integer.o: $(hdrdir)/ruby/3/intern/thread.h
-my_integer.o: $(hdrdir)/ruby/3/intern/time.h
-my_integer.o: $(hdrdir)/ruby/3/intern/variable.h
-my_integer.o: $(hdrdir)/ruby/3/intern/vm.h
-my_integer.o: $(hdrdir)/ruby/3/interpreter.h
-my_integer.o: $(hdrdir)/ruby/3/iterator.h
-my_integer.o: $(hdrdir)/ruby/3/memory.h
-my_integer.o: $(hdrdir)/ruby/3/method.h
-my_integer.o: $(hdrdir)/ruby/3/module.h
-my_integer.o: $(hdrdir)/ruby/3/newobj.h
-my_integer.o: $(hdrdir)/ruby/3/rgengc.h
-my_integer.o: $(hdrdir)/ruby/3/scan_args.h
-my_integer.o: $(hdrdir)/ruby/3/special_consts.h
-my_integer.o: $(hdrdir)/ruby/3/static_assert.h
-my_integer.o: $(hdrdir)/ruby/3/stdalign.h
-my_integer.o: $(hdrdir)/ruby/3/stdbool.h
-my_integer.o: $(hdrdir)/ruby/3/symbol.h
-my_integer.o: $(hdrdir)/ruby/3/token_paste.h
-my_integer.o: $(hdrdir)/ruby/3/value.h
-my_integer.o: $(hdrdir)/ruby/3/value_type.h
-my_integer.o: $(hdrdir)/ruby/3/variable.h
-my_integer.o: $(hdrdir)/ruby/3/warning_push.h
-my_integer.o: $(hdrdir)/ruby/3/xmalloc.h
my_integer.o: $(hdrdir)/ruby/assert.h
my_integer.o: $(hdrdir)/ruby/backward.h
my_integer.o: $(hdrdir)/ruby/backward/2/assume.h
my_integer.o: $(hdrdir)/ruby/backward/2/attributes.h
my_integer.o: $(hdrdir)/ruby/backward/2/bool.h
-my_integer.o: $(hdrdir)/ruby/backward/2/extern.h
-my_integer.o: $(hdrdir)/ruby/backward/2/gcc_version_since.h
my_integer.o: $(hdrdir)/ruby/backward/2/inttypes.h
my_integer.o: $(hdrdir)/ruby/backward/2/limits.h
my_integer.o: $(hdrdir)/ruby/backward/2/long_long.h
-my_integer.o: $(hdrdir)/ruby/backward/2/r_cast.h
-my_integer.o: $(hdrdir)/ruby/backward/2/rmodule.h
my_integer.o: $(hdrdir)/ruby/backward/2/stdalign.h
my_integer.o: $(hdrdir)/ruby/backward/2/stdarg.h
my_integer.o: $(hdrdir)/ruby/defines.h
my_integer.o: $(hdrdir)/ruby/intern.h
+my_integer.o: $(hdrdir)/ruby/internal/abi.h
+my_integer.o: $(hdrdir)/ruby/internal/anyargs.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/char.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/double.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/fixnum.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/gid_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/int.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/intptr_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/long.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/long_long.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/mode_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/off_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/pid_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/short.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/size_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/st_data_t.h
+my_integer.o: $(hdrdir)/ruby/internal/arithmetic/uid_t.h
+my_integer.o: $(hdrdir)/ruby/internal/assume.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/alloc_size.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/artificial.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/cold.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/const.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/constexpr.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/deprecated.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/diagnose_if.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/enum_extensibility.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/error.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/flag_enum.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/forceinline.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/format.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/maybe_unused.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/noalias.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/nodiscard.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/noexcept.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/noinline.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/nonnull.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/noreturn.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/packed_struct.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/pure.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/restrict.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/returns_nonnull.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/warning.h
+my_integer.o: $(hdrdir)/ruby/internal/attr/weakref.h
+my_integer.o: $(hdrdir)/ruby/internal/cast.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is/apple.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is/clang.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is/gcc.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is/intel.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is/msvc.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_is/sunpro.h
+my_integer.o: $(hdrdir)/ruby/internal/compiler_since.h
+my_integer.o: $(hdrdir)/ruby/internal/config.h
+my_integer.o: $(hdrdir)/ruby/internal/constant_p.h
+my_integer.o: $(hdrdir)/ruby/internal/core.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rarray.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rbasic.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rbignum.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rclass.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rdata.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rfile.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rhash.h
+my_integer.o: $(hdrdir)/ruby/internal/core/robject.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rregexp.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rstring.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rstruct.h
+my_integer.o: $(hdrdir)/ruby/internal/core/rtypeddata.h
+my_integer.o: $(hdrdir)/ruby/internal/ctype.h
+my_integer.o: $(hdrdir)/ruby/internal/dllexport.h
+my_integer.o: $(hdrdir)/ruby/internal/dosish.h
+my_integer.o: $(hdrdir)/ruby/internal/error.h
+my_integer.o: $(hdrdir)/ruby/internal/eval.h
+my_integer.o: $(hdrdir)/ruby/internal/event.h
+my_integer.o: $(hdrdir)/ruby/internal/fl_type.h
+my_integer.o: $(hdrdir)/ruby/internal/gc.h
+my_integer.o: $(hdrdir)/ruby/internal/glob.h
+my_integer.o: $(hdrdir)/ruby/internal/globals.h
+my_integer.o: $(hdrdir)/ruby/internal/has/attribute.h
+my_integer.o: $(hdrdir)/ruby/internal/has/builtin.h
+my_integer.o: $(hdrdir)/ruby/internal/has/c_attribute.h
+my_integer.o: $(hdrdir)/ruby/internal/has/cpp_attribute.h
+my_integer.o: $(hdrdir)/ruby/internal/has/declspec_attribute.h
+my_integer.o: $(hdrdir)/ruby/internal/has/extension.h
+my_integer.o: $(hdrdir)/ruby/internal/has/feature.h
+my_integer.o: $(hdrdir)/ruby/internal/has/warning.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/array.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/bignum.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/class.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/compar.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/complex.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/cont.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/dir.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/enum.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/enumerator.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/error.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/eval.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/file.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/hash.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/io.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/load.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/marshal.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/numeric.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/object.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/parse.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/proc.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/process.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/random.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/range.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/rational.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/re.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/ruby.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/select.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/select/largesize.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/set.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/signal.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/sprintf.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/string.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/struct.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/thread.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/time.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/variable.h
+my_integer.o: $(hdrdir)/ruby/internal/intern/vm.h
+my_integer.o: $(hdrdir)/ruby/internal/interpreter.h
+my_integer.o: $(hdrdir)/ruby/internal/iterator.h
+my_integer.o: $(hdrdir)/ruby/internal/memory.h
+my_integer.o: $(hdrdir)/ruby/internal/method.h
+my_integer.o: $(hdrdir)/ruby/internal/module.h
+my_integer.o: $(hdrdir)/ruby/internal/newobj.h
+my_integer.o: $(hdrdir)/ruby/internal/scan_args.h
+my_integer.o: $(hdrdir)/ruby/internal/special_consts.h
+my_integer.o: $(hdrdir)/ruby/internal/static_assert.h
+my_integer.o: $(hdrdir)/ruby/internal/stdalign.h
+my_integer.o: $(hdrdir)/ruby/internal/stdbool.h
+my_integer.o: $(hdrdir)/ruby/internal/stdckdint.h
+my_integer.o: $(hdrdir)/ruby/internal/symbol.h
+my_integer.o: $(hdrdir)/ruby/internal/value.h
+my_integer.o: $(hdrdir)/ruby/internal/value_type.h
+my_integer.o: $(hdrdir)/ruby/internal/variable.h
+my_integer.o: $(hdrdir)/ruby/internal/warning_push.h
+my_integer.o: $(hdrdir)/ruby/internal/xmalloc.h
my_integer.o: $(hdrdir)/ruby/missing.h
my_integer.o: $(hdrdir)/ruby/ruby.h
my_integer.o: $(hdrdir)/ruby/st.h
diff --git a/ext/-test-/integer/my_integer.c b/ext/-test-/integer/my_integer.c
index d86474bd7d..94f14d2765 100644
--- a/ext/-test-/integer/my_integer.c
+++ b/ext/-test-/integer/my_integer.c
@@ -1,9 +1,13 @@
#include "ruby.h"
+static const rb_data_type_t my_integer_type = {
+ "MyInteger", {0}, 0, 0, RUBY_TYPED_FREE_IMMEDIATELY
+};
+
static VALUE
my_integer_s_new(VALUE klass)
{
- return Data_Wrap_Struct(klass, 0, 0, 0);
+ return TypedData_Wrap_Struct(klass, &my_integer_type, 0);
}
void