summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 00:09:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 00:09:11 +0000
commit8aea783ff015a6df71b409f9ccd13bf28a093c77 (patch)
treed49b6889b923e0f668927eba534c6892db88abe3 /eval.c
parentefcffde43a20009884f3fa4be151b58505080c47 (diff)
downloadruby-8aea783ff015a6df71b409f9ccd13bf28a093c77.tar.gz
ruby-8aea783ff015a6df71b409f9ccd13bf28a093c77.tar.xz
ruby-8aea783ff015a6df71b409f9ccd13bf28a093c77.zip
* eval.c (stack_extend): fixed prototype.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10902 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index 96bb66d78..4eeba6f84 100644
--- a/eval.c
+++ b/eval.c
@@ -10366,7 +10366,7 @@ register_stack_extend(rb_thread_t th, int exit, void *vp, VALUE *curr_bsp)
#endif
# if defined(_MSC_VER) && _MSC_VER >= 1300
-__declspec(noinline) static void stack_extend(rb_thread_t, int);
+__declspec(noinline) static void stack_extend(rb_thread_t, int, VALUE*);
# endif
static void
stack_extend(rb_thread_t th, int exit, VALUE *addr_in_prev_frame)