diff options
author | Nobuyoshi Nakada <[email protected]> | 2024-03-24 01:09:29 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-03-24 01:09:29 +0900 |
commit | 678cb80033511cbb46df2bdddd42d29d70bc7f7d () | |
tree | f36b586f6fee10e2884d0621c743b3a76a44d756 /ext/-test-/fatal | |
parent | 5a77397489268f27a5d803441d723736a12f59fc (diff) |
Move `-test-/fatal/rb_fatal` to `-test-/fatal`
-rw-r--r-- | ext/-test-/fatal/extconf.rb | 3 | ||||
-rw-r--r-- | ext/-test-/fatal/init.c | 10 | ||||
-rw-r--r-- | ext/-test-/fatal/rb_fatal.c | 3 |
3 files changed, 13 insertions, 3 deletions
@@ -1,2 +1,3 @@ # frozen_string_literal: false -create_makefile("-test-/fatal/rb_fatal") @@ -0,0 +1,10 @@ @@ -13,8 +13,7 @@ ruby_fatal(VALUE obj, VALUE msg) } void -Init_rb_fatal(void) { - VALUE mBug = rb_define_module("Bug"); rb_define_singleton_method(mBug, "rb_fatal", ruby_fatal, 1); } |