diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-15 09:02:19 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-04-15 09:02:19 +0000 |
commit | 639c3a8962c7d859441dc35fabff6a432fcd02fe (patch) | |
tree | 7b190c4d192bb26ed6e3af9680c871465d36ec2e /include/ruby/intern.h | |
parent | 1ea2f2a492ffb62dfb872efb976bc7fc327f4798 (diff) |
* include/ruby/intern.h (rb_argv): replaced with rb_get_argv().
[ruby-Bugs-19514]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16037 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r-- | include/ruby/intern.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index b2b23f4a21..7e20439daf 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -480,7 +480,9 @@ int rb_reg_options(VALUE); void rb_set_kcode(const char*); const char* rb_get_kcode(void); /* ruby.c */ +#define rb_argv rb_get_argv() RUBY_EXTERN VALUE rb_argv0; +VALUE rb_get_argv(void); void *rb_load_file(const char*); void ruby_script(const char*); void ruby_prog_init(void); |