mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c071c05229
* include/ruby/ruby.h (RUBY_INTEGER_UNIFICATION): macro to tell if Integer is integrated. [ruby-core:75718][Bug #12427] * include/ruby/backward.h, internal.h (rb_cFixnum, rb_cBignum): fallback to rb_cInteger. * bignum.c, numeric.c, ext/json/generator/generator.{c,h}: use the macro. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
649 B
C
25 lines
649 B
C
#ifndef RUBY_RUBY_BACKWARD_H
|
|
#define RUBY_RUBY_BACKWARD_H 1
|
|
|
|
#ifndef RUBY_SHOW_COPYRIGHT_TO_DIE
|
|
# define RUBY_SHOW_COPYRIGHT_TO_DIE 1
|
|
#endif
|
|
#if RUBY_SHOW_COPYRIGHT_TO_DIE
|
|
/* for source code backward compatibility */
|
|
DEPRECATED(static inline int ruby_show_copyright_to_die(int));
|
|
static inline int
|
|
ruby_show_copyright_to_die(int exitcode)
|
|
{
|
|
ruby_show_copyright();
|
|
return exitcode;
|
|
}
|
|
#define ruby_show_copyright() /* defer EXIT_SUCCESS */ \
|
|
(exit(ruby_show_copyright_to_die(EXIT_SUCCESS)))
|
|
#endif
|
|
|
|
#ifdef RUBY_INTEGER_UNIFICATION
|
|
# define rb_cFixnum rb_cInteger
|
|
# define rb_cBignum rb_cInteger
|
|
#endif
|
|
|
|
#endif /* RUBY_RUBY_BACKWARD_H */
|