From 997b69cb6ac9eb97ea644276f1af886a49c1de03 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 14 Mar 2002 06:23:46 +0000 Subject: * re.c (rb_reg_match): should clear $~ if operand is nil. * re.c (rb_reg_match2): ditto. * configure: merge Jonathan Baker's large file support patch [ruby-talk:35316], with read_all patch in [ruby-talk:35470]. * eval.c (rb_f_abort): optional message argument that be printed on termination. [new] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- intern.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'intern.h') diff --git a/intern.h b/intern.h index 5310f1c03d..d05c3af945 100644 --- a/intern.h +++ b/intern.h @@ -70,6 +70,12 @@ long rb_big2long _((VALUE)); #define rb_big2int(x) rb_big2long(x) unsigned long rb_big2ulong _((VALUE)); #define rb_big2uint(x) rb_big2ulong(x) +#if HAVE_LONG_LONG +VALUE rb_ll2inum _((long long)); +VALUE rb_ull2inum _((unsigned long long)); +long long rb_big2ll _((VALUE)); +unsigned long long rb_big2ull _((VALUE)); +#endif /* HAVE_LONG_LONG */ void rb_quad_pack _((char*,VALUE)); VALUE rb_quad_unpack _((const char*,int)); VALUE rb_dbl2big _((double)); -- cgit v1.2.3