summaryrefslogtreecommitdiff
path: root/random.c
diff options
context:
space:
mode:
Diffstat (limited to 'random.c')
-rw-r--r--random.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/random.c b/random.c
index 85fa7b4643..7b663b28ea 100644
--- a/random.c
+++ b/random.c
@@ -3,7 +3,7 @@
random.c -
$Author: matz $
- $Date: 1994/08/12 04:47:48 $
+ $Date: 1994/10/14 10:00:59 $
created at: Fri Dec 24 16:39:21 JST 1993
Copyright (C) 1994 Yukihiro Matsumoto
@@ -73,8 +73,8 @@ Frand(obj, max)
Init_Random()
{
- extern VALUE C_Kernel;
+ extern VALUE C_Builtin;
- rb_define_method(C_Kernel, "srand", Fsrand, -2);
- rb_define_method(C_Kernel, "rand", Frand, 1);
+ rb_define_method(C_Builtin, "srand", Fsrand, -2);
+ rb_define_method(C_Builtin, "rand", Frand, 1);
}