summaryrefslogtreecommitdiff
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
commit28fd8a2d91dfef3ab371cbd5782ef4a7ef44850e (patch)
treed49b6889b923e0f668927eba534c6892db88abe3 /eval.c
parent78cf45771c690c87450a1dc276838bc9cd4a44a9 (diff)
* eval.c (stack_extend): fixed prototype.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 96bb66d78e..4eeba6f848 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)