blob: e6e149556215b8b1d973883f3d6628c503a1cae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/************************************************
inits.c -
$Author: matz $
$Date: 1995/01/10 10:42:38 $
created at: Tue Dec 28 16:01:58 JST 1993
Copyright (C) 1993-1995 Yukihiro Matsumoto
************************************************/
#include "ruby.h"
rb_call_inits()
{
Init_sym();
Init_var_tables();
Init_Object();
Init_GC();
Init_eval();
Init_Comparable();
Init_Enumerable();
Init_Numeric();
Init_Bignum();
Init_Assoc();
Init_Array();
Init_Hash();
Init_Struct();
Init_String();
Init_Regexp();
Init_pack();
Init_Range();
Init_IO();
Init_Dir();
Init_Time();
Init_Random();
Init_signal();
Init_process();
Init_Etc();
Init_load();
Init_Block();
Init_Math();
/* new Inits comes between here.. */
/* .. and here. */
Init_version();
}
|