summaryrefslogtreecommitdiff
path: root/inits.c
blob: b8fcb0f826ebc48c0477558acc7b66b2cf7fce51 (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: 1996/12/25 10:42:38 $
  created at: Tue Dec 28 16:01:58 JST 1993

  Copyright (C) 1993-1996 Yukihiro Matsumoto

************************************************/

#include "ruby.h"

void
rb_call_inits()
{
    Init_sym();
    Init_var_tables();
    Init_Object();
#ifdef THREAD
    Init_Thread();
#endif
    Init_eval();
    Init_Comparable();
    Init_Enumerable();
    Init_String();
    Init_Exception();
    Init_Numeric();
    Init_Bignum();
    Init_Array();
    Init_Hash();
    Init_Struct();
    Init_Regexp();
    Init_pack();
    Init_Range();
    Init_IO();
    Init_Dir();
    Init_Time();
    Init_Random();
    Init_signal();
    Init_process();
    Init_load();
    Init_Proc();
    Init_Math();
    Init_GC();
    Init_version();
}