1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* regex.c: declare rb_warn to have variadic argument. [ruby-core:4751]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2005-04-24 16:23:42 +00:00
parent 83341854df
commit 99fc35c432
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Apr 25 01:18:43 2005 Tanaka Akira <akr@m17n.org>
* regex.c: declare rb_warn to have variadic argument. [ruby-core:4751]
Sat Apr 23 19:45:59 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* ext/tcltklib/tcltklib.c (ip_RubyExitCommand): exit with status code

View file

@ -185,7 +185,7 @@ static int current_mbctype = MBCTYPE_ASCII;
#ifdef RUBY
#include "util.h"
void rb_warn _((char*));
void rb_warn _((const char*, ...));
# define re_warning(x) rb_warn(x)
#endif