diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-01-16 12:13:05 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-01-16 12:13:05 +0000 |
commit | 3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4 (patch) | |
tree | b3c086e437cab449f90ba637710daed0ddfec4c4 /inits.c | |
parent | 392296c12de9d7f9be03a8205250ba0844cb9d38 (diff) | |
download | bundler-3db12e8b236ac8f88db8eb4690d10e4a3b8dbcd4.tar.gz |
Initial revisionv1_0_r2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'inits.c')
-rw-r--r-- | inits.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/inits.c b/inits.c new file mode 100644 index 0000000000..ebfc0f9c3a --- /dev/null +++ b/inits.c @@ -0,0 +1,48 @@ +/************************************************ + + 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(); +} |