mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Guido: added some void's to declarations
This commit is contained in:
parent
9ff06cea7f
commit
76ceece75a
1 changed files with 5 additions and 1 deletions
|
@ -69,6 +69,9 @@ static int orig_argc;
|
|||
static int keep_normal;
|
||||
static int keep_error = 1;
|
||||
|
||||
static void Py_Main Py_PROTO((int, char **)); /* Forward */
|
||||
void PyMac_Exit Py_PROTO((int)); /* Forward */
|
||||
|
||||
/* Initialize the Mac toolbox world */
|
||||
|
||||
static void
|
||||
|
@ -301,7 +304,7 @@ PyMac_InteractiveOptions(int *inspect, int *verbose, int *suppress_print,
|
|||
}
|
||||
/* Main program */
|
||||
|
||||
int
|
||||
static void
|
||||
Py_Main(argc, argv)
|
||||
int argc;
|
||||
char **argv;
|
||||
|
@ -374,6 +377,7 @@ Py_Main(argc, argv)
|
|||
/*
|
||||
** Terminate application
|
||||
*/
|
||||
void
|
||||
PyMac_Exit(status)
|
||||
int status;
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue