mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
dbee678630
* eval_proc.c: renamed to proc.c. * common.mk: ditto. * yarvcore.h, yarvcore.c: rename or remove some global variables removed: mYarvCore, mYarvInsns renamed: cYarvISeq -> rb_cISeq, cYarvProc -> rb_cProc, cYarvBinding -> rb_cBinding ::YarvCore module is removed and ::YarvCore::VM class becomes ::VM. And change/remove some functions which added with YARV. * compile.c: ditto. * eval.c: ditto. * iseq.c: ditto. * vm.c: ditto. * inits.c: rename Init_yarvcore to Init_vm. * yarvcore.c, proc.c: move some functions and initialization from yarvcore.c to proc.c. * intern.h, proc.c: add global function rb_binding_new(void). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
91 lines
1.9 KiB
C
91 lines
1.9 KiB
C
/**********************************************************************
|
|
|
|
inits.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: Tue Dec 28 16:01:58 JST 1993
|
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ruby.h"
|
|
|
|
void Init_Array _((void));
|
|
void Init_Bignum _((void));
|
|
void Init_Binding _((void));
|
|
void Init_Comparable _((void));
|
|
void Init_Dir _((void));
|
|
void Init_Enumerable _((void));
|
|
void Init_Enumerator _((void));
|
|
void Init_Exception _((void));
|
|
void Init_syserr _((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_Precision _((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 Init_jump _((void));
|
|
void Init_vm _((void));
|
|
|
|
|
|
void
|
|
rb_call_inits()
|
|
{
|
|
Init_sym();
|
|
Init_var_tables();
|
|
Init_Object();
|
|
Init_Comparable();
|
|
Init_Enumerable();
|
|
Init_Precision();
|
|
Init_eval();
|
|
Init_jump();
|
|
Init_String();
|
|
Init_Exception();
|
|
Init_Thread();
|
|
Init_Numeric();
|
|
Init_Bignum();
|
|
Init_syserr();
|
|
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_Binding();
|
|
Init_Math();
|
|
Init_GC();
|
|
Init_marshal();
|
|
Init_Enumerator();
|
|
Init_vm();
|
|
Init_version();
|
|
}
|