diff options
author | Guido van Rossum <guido@python.org> | 1993-11-23 17:53:17 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-23 17:53:17 +0000 |
commit | 838ba49e1eb0d65d602cbc79129fa5109ea096e4 (patch) | |
tree | 7686555fedbda4263541eb642a7afb14d71d9d32 /Python/pythonrun.c | |
parent | 430ab06dd8bc5a9c0b74aea7029648151d800e60 (diff) | |
download | cpython-838ba49e1eb0d65d602cbc79129fa5109ea096e4.tar.gz |
* timemodule.c: Add hack for Solaris 2.
* posixmodule.c: don't prototype getcwd() -- it's not portable...
* mappingobject.c: double-check validity of last_name_char in
dict{lookup,insert,remove}.
* arraymodule.c: need memmove only for non-STDC Suns.
* Makefile: comment out HTML_LIBS and XT_USE by default
* pythonmain.c: don't prototype getopt() -- it's not standardized
* socketmodule.c: cast flags arg to {get,set}sockopt() and addrbuf arg to
recvfrom() to (ANY*).
* pythonrun.c (initsigs): fix prototype, make it static
* intobject.c (LONG_BIT): only #define it if not already defined
* classobject.[ch]: remove all references to unused instance_convert()
* mappingobject.c (getmappingsize): Don't return NULL in int function.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 56254ac285..ac7e0400a0 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -58,7 +58,7 @@ static object *run_node PROTO((node *n, char *filename, object *globals, object *locals)); static object *eval_node PROTO((node *n, char *filename, object *globals, object *locals)); -void initsigs PROTO(()); +static void initsigs PROTO((void)); int debugging; /* Needed by parser.c */ int verbose; /* Needed by import.c */ |