summaryrefslogtreecommitdiff
path: root/ext/-test-/num2int/num2int.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-02 10:26:02 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-02 10:26:02 +0000
commit6d0c59f156da08a6a669a3187f86b424ce147626 (patch)
tree9134fb42fbe26074cc00aa3083e57cd1dd65a664 /ext/-test-/num2int/num2int.c
parent817a96a45d686571c97892aa7c0b287539a5ecbd (diff)
* ext/-test-/num2int/num2int.c: Define utility methods
as module methods of Num2int. * test/-ext-/num2int/test_num2int.rb: Follow the above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/-test-/num2int/num2int.c')
-rw-r--r--ext/-test-/num2int/num2int.c28
1 files changed, 15 insertions, 13 deletions
diff --git a/ext/-test-/num2int/num2int.c b/ext/-test-/num2int/num2int.c
index be4c265895..3aec3ccf3b 100644
--- a/ext/-test-/num2int/num2int.c
+++ b/ext/-test-/num2int/num2int.c
@@ -109,26 +109,28 @@ test_fix2ulong(VALUE obj, VALUE num)
void
Init_num2int(void)
{
- rb_define_global_function("NUM2SHORT", test_num2short, 1);
- rb_define_global_function("NUM2USHORT", test_num2ushort, 1);
+ VALUE mNum2int = rb_define_module("Num2int");
- rb_define_global_function("NUM2INT", test_num2int, 1);
- rb_define_global_function("NUM2UINT", test_num2uint, 1);
+ rb_define_module_function(mNum2int, "NUM2SHORT", test_num2short, 1);
+ rb_define_module_function(mNum2int, "NUM2USHORT", test_num2ushort, 1);
- rb_define_global_function("NUM2LONG", test_num2long, 1);
- rb_define_global_function("NUM2ULONG", test_num2ulong, 1);
+ rb_define_module_function(mNum2int, "NUM2INT", test_num2int, 1);
+ rb_define_module_function(mNum2int, "NUM2UINT", test_num2uint, 1);
+
+ rb_define_module_function(mNum2int, "NUM2LONG", test_num2long, 1);
+ rb_define_module_function(mNum2int, "NUM2ULONG", test_num2ulong, 1);
#ifdef HAVE_LONG_LONG
- rb_define_global_function("NUM2LL", test_num2ll, 1);
- rb_define_global_function("NUM2ULL", test_num2ull, 1);
+ rb_define_module_function(mNum2int, "NUM2LL", test_num2ll, 1);
+ rb_define_module_function(mNum2int, "NUM2ULL", test_num2ull, 1);
#endif
- rb_define_global_function("FIX2SHORT", test_fix2short, 1);
+ rb_define_module_function(mNum2int, "FIX2SHORT", test_fix2short, 1);
- rb_define_global_function("FIX2INT", test_fix2int, 1);
- rb_define_global_function("FIX2UINT", test_fix2uint, 1);
+ rb_define_module_function(mNum2int, "FIX2INT", test_fix2int, 1);
+ rb_define_module_function(mNum2int, "FIX2UINT", test_fix2uint, 1);
- rb_define_global_function("FIX2LONG", test_fix2long, 1);
- rb_define_global_function("FIX2ULONG", test_fix2ulong, 1);
+ rb_define_module_function(mNum2int, "FIX2LONG", test_fix2long, 1);
+ rb_define_module_function(mNum2int, "FIX2ULONG", test_fix2ulong, 1);
}