mirror of
https://github.com/python/cpython.git
synced 2026-01-07 16:02:55 +00:00
gh-103167: Fix -Wstrict-prototypes warnings by using (void) for functions with no args (GH-103168)
This commit is contained in:
parent
1a8f862e32
commit
119f67de08
7 changed files with 16 additions and 16 deletions
|
|
@ -2355,13 +2355,13 @@ config_usage(int error, const wchar_t* program)
|
|||
}
|
||||
|
||||
static void
|
||||
config_envvars_usage()
|
||||
config_envvars_usage(void)
|
||||
{
|
||||
printf(usage_envvars, (wint_t)DELIM, (wint_t)DELIM, PYTHONHOMEHELP);
|
||||
}
|
||||
|
||||
static void
|
||||
config_xoptions_usage()
|
||||
config_xoptions_usage(void)
|
||||
{
|
||||
puts(usage_xoptions);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue