summaryrefslogtreecommitdiff
path: root/inits.c
blob: 9a5b20830644612fb0044ce352cace1cede0cfde (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
49
50
51
52
53
/************************************************

  inits.c -

  $Author: matz $
  $Date: 1994/12/16 00:59:24 $
  created at: Tue Dec 28 16:01:58 JST 1993

  Copyright (C) 1994 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_Array();
    Init_Dict();
    Init_Struct();
    Init_String();
    Init_Regexp();
    Init_Glob();
    Init_pack();
    Init_Range();
    Init_IO();
    Init_Dir();
    Init_Time();
    Init_Random();
    Init_process();
    Init_Etc();
    Init_load();
    Init_Block();
    Init_Math();
#ifdef USE_DBM
    Init_DBM();
#endif
#ifdef HAVE_SOCKET
    Init_Socket();
#endif
    /* new Inits comes between here.. */

    /* .. and here. */
    Init_version();
}