diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-20 07:04:17 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-20 07:04:17 +0000 |
| commit | 0bee190aafc8219eac5e1b1c885ea09009cbdfb7 (patch) | |
| tree | a3771a3a26fee50291e65968e4564fd828f4644d /eval.c | |
| parent | d4255ef0d33b8365370518991bbd7bd09bae03e3 (diff) | |
| download | ruby-0bee190aafc8219eac5e1b1c885ea09009cbdfb7.tar.gz ruby-0bee190aafc8219eac5e1b1c885ea09009cbdfb7.tar.xz ruby-0bee190aafc8219eac5e1b1c885ea09009cbdfb7.zip | |
* ruby.h: export classes/modules to implement sandbox.
[ruby-core:08283]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
| -rw-r--r-- | eval.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -228,7 +228,7 @@ typedef jmp_buf rb_jmpbuf_t; #include <sys/stat.h> VALUE rb_cProc; -static VALUE rb_cBinding; +VALUE rb_cBinding; static VALUE proc_invoke _((VALUE,VALUE,VALUE,VALUE)); static VALUE rb_f_binding _((VALUE)); static void rb_f_END _((void)); @@ -237,7 +237,7 @@ static VALUE block_pass _((VALUE,NODE*)); VALUE rb_cMethod; static VALUE method_call _((int, VALUE*, VALUE)); -static VALUE rb_cUnboundMethod; +VALUE rb_cUnboundMethod; static VALUE umethod_bind _((VALUE, VALUE)); static VALUE rb_mod_define_method _((int, VALUE*, VALUE)); NORETURN(static void rb_raise_jump _((VALUE))); @@ -747,8 +747,8 @@ extern NODE *ruby_eval_tree_begin; extern NODE *ruby_eval_tree; extern int ruby_nerrs; -static VALUE rb_eLocalJumpError; -static VALUE rb_eSysStackError; +VALUE rb_eLocalJumpError; +VALUE rb_eSysStackError; extern VALUE ruby_top_self; @@ -12556,7 +12556,7 @@ rb_thread_atfork() * 3: 15 16 */ -static VALUE rb_cCont; +VALUE rb_cCont; /* * call-seq: |
