Prefer ANSI-style prototypes over old K&R-style definitions

This commit is contained in:
Nobuyoshi Nakada 2021-10-27 10:16:52 +09:00
Родитель e5319dc985
Коммит 33844f3096
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -140,7 +140,7 @@ char *nl_langinfo(nl_item item)
#ifdef TEST
#include <stdio.h>
int main()
int main(void)
{
printf("%s\n", nl_langinfo(CODESET));
return 0;

Просмотреть файл

@ -5751,7 +5751,7 @@ rb_set_coverages(VALUE coverages, int mode, VALUE me2counter)
}
void
rb_resume_coverages()
rb_resume_coverages(void)
{
int mode = GET_VM()->coverage_mode;
VALUE me2counter = GET_VM()->me2counter;
@ -5765,7 +5765,7 @@ rb_resume_coverages()
}
void
rb_suspend_coverages()
rb_suspend_coverages(void)
{
rb_remove_event_hook((rb_event_hook_func_t) update_line_coverage);
if (GET_VM()->coverage_mode & COVERAGE_TARGET_BRANCHES) {