mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +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
|
@ -121,7 +121,7 @@ Copyright (C) 1994 Steen Lumholt.
|
|||
#define WAIT_FOR_STDIN
|
||||
|
||||
static PyObject *
|
||||
_get_tcl_lib_path()
|
||||
_get_tcl_lib_path(void)
|
||||
{
|
||||
static PyObject *tcl_library_path = NULL;
|
||||
static int already_checked = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue