mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bignum.c: changed foo _((boo))' to foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c, gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h, node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h, rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c, util.c, util.h, variable.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6b1239a820
commit
08c1738c51
36 changed files with 826 additions and 816 deletions
68
inits.c
68
inits.c
|
|
@ -12,40 +12,40 @@
|
|||
|
||||
#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_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
|
||||
rb_call_inits(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue