* cont.c: fix prototype declare of register_stack_extend

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21507 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
takano32 2009-01-14 05:43:49 +00:00
parent 2717a2eb6e
commit aa87e280ea
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Jan 14 14:42:30 2009 TAKANO Mitsuhiro (takano32) <tak@no32.tk>
* cont.c: fix prototype declare of register_stack_extend
Wed Jan 14 13:19:21 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/win32.c (rb_w32_aspawn): should not escape with carret

2
cont.c
View File

@ -375,7 +375,7 @@ static volatile int C(p), C(q), C(r), C(s), C(t);
{/* the above lines make cc-mode.el confused so much */}
#endif
int rb_dummy_false = 0;
NORETURN(NOINLINE(static void register_stack_extend(rb_context_t *, VALUE *)));
NORETURN(NOINLINE(static void register_stack_extend(rb_context_t *, VALUE *, VALUE *)));
static void
register_stack_extend(rb_context_t *cont, VALUE *vp, VALUE *curr_bsp)
{