1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* fix ANSI C compliance of r33757

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ngoto 2011-11-15 05:05:35 +00:00
parent fa00b6516c
commit 3d85b0ff5a
2 changed files with 2 additions and 2 deletions

View file

@ -198,7 +198,7 @@ void xfree(void*);
#endif
#if defined(__sparc)
void rb_sparc_flush_register_windows();
void rb_sparc_flush_register_windows(void);
# define FLUSH_REGISTER_WINDOWS rb_sparc_flush_register_windows()
#elif defined(__ia64)
void *rb_ia64_bsp(void);

View file

@ -9,7 +9,7 @@
See http://redmine.ruby-lang.org/issues/5244 for discussion.
*********************************************************************/
void rb_sparc_flush_register_windows()
void rb_sparc_flush_register_windows(void)
{
asm
#ifdef __GNUC__