summaryrefslogtreecommitdiff
path: root/ruby_2_2/inits.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/inits.c')
-rw-r--r--ruby_2_2/inits.c65
1 files changed, 0 insertions, 65 deletions
diff --git a/ruby_2_2/inits.c b/ruby_2_2/inits.c
deleted file mode 100644
index 12b2d526a9..0000000000
--- a/ruby_2_2/inits.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/**********************************************************************
-
- inits.c -
-
- $Author$
- created at: Tue Dec 28 16:01:58 JST 1993
-
- Copyright (C) 1993-2007 Yukihiro Matsumoto
-
-**********************************************************************/
-
-#include "internal.h"
-
-#define CALL(n) {void Init_##n(void); Init_##n();}
-
-void
-rb_call_inits(void)
-{
- CALL(Method);
- CALL(RandomSeed);
- CALL(sym);
- CALL(var_tables);
- CALL(Object);
- CALL(top_self);
- CALL(Encoding);
- CALL(Comparable);
- CALL(Enumerable);
- CALL(String);
- CALL(Exception);
- CALL(eval);
- CALL(safe);
- CALL(jump);
- CALL(Numeric);
- CALL(Bignum);
- CALL(syserr);
- CALL(Array);
- CALL(Hash);
- CALL(Struct);
- CALL(Regexp);
- CALL(pack);
- CALL(transcode);
- CALL(marshal);
- CALL(Range);
- CALL(IO);
- CALL(Dir);
- CALL(Time);
- CALL(Random);
- CALL(signal);
- CALL(load);
- CALL(Proc);
- CALL(Binding);
- CALL(Math);
- CALL(GC);
- CALL(Enumerator);
- CALL(VM);
- CALL(ISeq);
- CALL(Thread);
- CALL(process);
- CALL(Cont);
- CALL(Rational);
- CALL(Complex);
- CALL(version);
- CALL(vm_trace);
-}
-#undef CALL