mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/RUBY@11 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f12baed5df
commit
fd1d8cdc09
78 changed files with 7894 additions and 7806 deletions
36
inits.c
36
inits.c
|
@ -12,20 +12,51 @@
|
|||
|
||||
#include "ruby.h"
|
||||
|
||||
void Init_Array _((void));
|
||||
void Init_Bignum _((void));
|
||||
void Init_Comparable _((void));
|
||||
void Init_Dir _((void));
|
||||
void Init_Enumerable _((void));
|
||||
void Init_Exception _((void));
|
||||
void Init_eval _((void));
|
||||
void Init_load _((void));
|
||||
void Init_Proc _((void));
|
||||
void Init_Thread _((void));
|
||||
void Init_File _((void));
|
||||
void Init_GC _((void));
|
||||
void Init_Hash _((void));
|
||||
void Init_IO _((void));
|
||||
void Init_Math _((void));
|
||||
void Init_marshal _((void));
|
||||
void Init_Numeric _((void));
|
||||
void Init_Object _((void));
|
||||
void Init_pack _((void));
|
||||
void Init_sym _((void));
|
||||
void Init_process _((void));
|
||||
void Init_Random _((void));
|
||||
void Init_Range _((void));
|
||||
void Init_Regexp _((void));
|
||||
void Init_signal _((void));
|
||||
void Init_String _((void));
|
||||
void Init_Struct _((void));
|
||||
void Init_Time _((void));
|
||||
void Init_var_tables _((void));
|
||||
void Init_version _((void));
|
||||
|
||||
void
|
||||
rb_call_inits()
|
||||
{
|
||||
Init_sym();
|
||||
Init_var_tables();
|
||||
Init_Object();
|
||||
Init_Exception();
|
||||
#ifdef THREAD
|
||||
Init_Thread();
|
||||
#endif
|
||||
Init_eval();
|
||||
Init_Comparable();
|
||||
Init_Enumerable();
|
||||
Init_eval();
|
||||
Init_String();
|
||||
Init_Exception();
|
||||
Init_Numeric();
|
||||
Init_Bignum();
|
||||
Init_Array();
|
||||
|
@ -44,5 +75,6 @@ rb_call_inits()
|
|||
Init_Proc();
|
||||
Init_Math();
|
||||
Init_GC();
|
||||
Init_marshal();
|
||||
Init_version();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue