mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8e5c3b23f2
and delimiters. * dir.c (remove_backslases): remove backslashes from path before calling stat(2). * dir.c (dir_s_glob): call rb_yield directly (via push_pattern) if block is given to the method. * dir.c (push_pattern): do not call rb_ary_push; yield directly. * eval.c (blk_copy_prev): reduced ALLOC_N too much. * eval.c (frame_dup): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
80 lines
1.7 KiB
C
80 lines
1.7 KiB
C
/**********************************************************************
|
|
|
|
inits.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: Tue Dec 28 16:01:58 JST 1993
|
|
|
|
Copyright (C) 1993-2001 Yukihiro Matsumoto
|
|
|
|
**********************************************************************/
|
|
|
|
#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_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
|
|
rb_call_inits()
|
|
{
|
|
Init_sym();
|
|
Init_var_tables();
|
|
Init_Object();
|
|
Init_Comparable();
|
|
Init_Enumerable();
|
|
Init_Precision();
|
|
Init_eval();
|
|
Init_String();
|
|
Init_Exception();
|
|
Init_Thread();
|
|
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_marshal();
|
|
Init_version();
|
|
}
|