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

Protoized old pre-ANSI K&R style definitions

This commit is contained in:
Nobuyoshi Nakada 2020-12-05 14:46:34 +09:00
parent a83a51932d
commit d2b7e1e4b2
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
5 changed files with 8 additions and 8 deletions

View file

@ -17,7 +17,7 @@
#if defined(__sparc)
__attribute__((noinline))
// https://marc.info/?l=linux-sparc&m=131914569320660&w=2
static void coroutine_flush_register_windows() {
static void coroutine_flush_register_windows(void) {
__asm__
#ifdef __GNUC__
__volatile__
@ -34,11 +34,11 @@ static void coroutine_flush_register_windows() {
;
}
#else
static void coroutine_flush_register_windows() {}
static void coroutine_flush_register_windows(void) {}
#endif
__attribute__((noinline))
void *coroutine_stack_pointer() {
void *coroutine_stack_pointer(void) {
return (void*)(
(char*)__builtin_frame_address(0)
);

View file

@ -9,7 +9,7 @@ struct T {
RBIMPL_STATIC_ASSERT(RUBY_ALIGNOF, RUBY_ALIGNOF(double) == offsetof(struct T, t));
void
Init_RUBY_ALIGNOF()
Init_RUBY_ALIGNOF(void)
{
// Windows linker mandates this symbol to exist.
}

View file

@ -1133,7 +1133,7 @@ rb_class_search_ancestor(VALUE cl, VALUE c)
*/
static VALUE
rb_obj_dummy()
rb_obj_dummy(void)
{
return Qnil;
}

View file

@ -39,7 +39,7 @@ Init_Scheduler(void)
}
VALUE
rb_scheduler_get()
rb_scheduler_get(void)
{
rb_thread_t *thread = GET_THREAD();
VM_ASSERT(thread);
@ -76,7 +76,7 @@ rb_threadptr_scheduler_current(rb_thread_t *thread)
}
VALUE
rb_scheduler_current()
rb_scheduler_current(void)
{
return rb_threadptr_scheduler_current(GET_THREAD());
}

View file

@ -5402,7 +5402,7 @@ rb_thread_backtrace_locations_m(int argc, VALUE *argv, VALUE thval)
}
void
Init_Thread_Mutex()
Init_Thread_Mutex(void)
{
rb_thread_t *th = GET_THREAD();