Sha256: b41124c57d2e60a8e48559375330f463e75af0baa1488b6614fffae573fb46b1

Contents?: true

Size: 1.14 KB

Versions: 33

Compression:

Stored size: 1.14 KB

Contents

/**********************************************************************

  inits.c -

  $Author: akr $
  created at: Tue Dec 28 16:01:58 JST 1993

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#include "ruby/ruby.h"

#define CALL(n) {void Init_##n(void); Init_##n();}

void
rb_call_inits(void)
{
    CALL(RandomSeed);
    CALL(sym);
    CALL(var_tables);
    CALL(Object);
    CALL(top_self);
    CALL(Encoding);
    CALL(encdb);
    CALL(Comparable);
    CALL(Enumerable);
    CALL(String);
    CALL(Exception);
    CALL(eval);
    CALL(safe);
    CALL(jump);
    CALL(Numeric);
    CALL(Bignum);
    CALL(syserr);
    CALL(Array);
    CALL(Hash);
    CALL(Struct);
    CALL(Regexp);
    CALL(pack);
    CALL(transcode);
    CALL(marshal);
    CALL(Range);
    CALL(IO);
    CALL(Dir);
    CALL(Time);
    CALL(Random);
    CALL(signal);
    CALL(process);
    CALL(load);
    CALL(Proc);
    CALL(Binding);
    CALL(Math);
    CALL(GC);
    CALL(Enumerator);
    CALL(VM);
    CALL(ISeq);
    CALL(Thread);
    CALL(Cont);
    CALL(Rational);
    CALL(Complex);
    CALL(version);
}
#undef CALL

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
rhodes-5.5.18 platform/shared/ruby/inits.c
rhodes-5.5.17 platform/shared/ruby/inits.c
rhodes-5.5.15 platform/shared/ruby/inits.c
rhodes-5.5.0.22 platform/shared/ruby/inits.c
rhodes-5.5.2 platform/shared/ruby/inits.c
rhodes-5.5.0.7 platform/shared/ruby/inits.c
rhodes-5.5.0.3 platform/shared/ruby/inits.c
rhodes-5.5.0 platform/shared/ruby/inits.c
tauplatform-1.0.3 platform/shared/ruby/inits.c
tauplatform-1.0.2 platform/shared/ruby/inits.c
tauplatform-1.0.1 platform/shared/ruby/inits.c
rhodes-3.5.1.12 platform/shared/ruby/inits.c
rhodes-3.3.5 platform/shared/ruby/inits.c
rhodes-3.4.2 platform/shared/ruby/inits.c
rhodes-3.3.4 platform/shared/ruby/inits.c
rhodes-3.3.3 platform/shared/ruby/inits.c
rhodes-3.3.3.beta.4 platform/shared/ruby/inits.c
rhodes-3.3.3.beta.3 platform/shared/ruby/inits.c
rhodes-3.3.3.beta.2 platform/shared/ruby/inits.c
rhodes-3.3.3.beta.1 platform/shared/ruby/inits.c