mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
49 lines
810 B
C
49 lines
810 B
C
|
/************************************************
|
||
|
|
||
|
inits.c -
|
||
|
|
||
|
$Author$
|
||
|
$Date$
|
||
|
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();
|
||
|
}
|