diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-10 23:48:15 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-10 23:48:15 +0000 |
commit | eac0bd97145056be0db3284d935d04b83eead301 (patch) | |
tree | 004964c4bdf417475744597b63fe945f30ae192e | |
parent | 8e9fb2e14c4773cb9fd006133bd38f8bc851ff0f (diff) |
* include/ruby/ruby.h (ruby_exec_node): declared.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25293 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | include/ruby/ruby.h | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Sun Oct 11 08:48:14 2009 Nobuyoshi Nakada <[email protected]> + + * include/ruby/ruby.h (ruby_exec_node): declared. + Sun Oct 11 03:10:50 2009 NARUSE, Yui <[email protected]> * regparse.c (onig_syntax_warn): added. diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 33a35ce435..6e86cbeec6 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -1135,6 +1135,7 @@ void ruby_init_stack(volatile VALUE*); void ruby_init(void); void *ruby_options(int, char**); int ruby_run_node(void *); +int ruby_exec_node(void *); RUBY_EXTERN VALUE rb_mKernel; RUBY_EXTERN VALUE rb_mComparable; |