summaryrefslogtreecommitdiff
path: root/inits.c
diff options
context:
space:
mode:
Diffstat (limited to 'inits.c')
-rw-r--r--inits.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/inits.c b/inits.c
new file mode 100644
index 0000000000..58d686d912
--- /dev/null
+++ b/inits.c
@@ -0,0 +1,50 @@
+/************************************************
+
+ inits.c -
+
+ $Author: matz $
+ $Date: 1994/06/17 14:23:50 $
+ 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_Comparable();
+ Init_Enumerable();
+ Init_Numeric();
+ Init_Bignum();
+ Init_Array();
+ Init_Dict();
+ Init_Struct();
+ Init_String();
+ Init_Regexp();
+ Init_pack();
+ Init_Range();
+ Init_IO();
+ Init_Dir();
+ Init_Time();
+ Init_Random();
+ Init_process();
+ Init_Etc();
+ Init_load();
+ Init_Math();
+#ifdef USE_DBM
+ Init_DBM();
+#endif
+#ifdef HAVE_SOCKET
+ Init_Socket();
+#endif
+ /* new Inits comes between here.. */
+
+ /* .. and here. */
+ Init_version();
+}