diff options
author | Guido van Rossum <guido@python.org> | 1997-07-19 19:51:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-19 19:51:43 (GMT) |
commit | 534ac094f9d63ba1cae95c99fba2c532f8eb31fb (patch) | |
tree | 5c120bac648a2485a9567a548c1d7a9c1313882a /Python/sysmodule.c | |
parent | 57d8e3f1c7207926cab62b45be35bc44d33f00da (diff) | |
download | cpython-534ac094f9d63ba1cae95c99fba2c532f8eb31fb.zip cpython-534ac094f9d63ba1cae95c99fba2c532f8eb31fb.tar.gz cpython-534ac094f9d63ba1cae95c99fba2c532f8eb31fb.tar.bz2 |
Removed a bunch of extern declarations of functions that are now
properly declared in Python.h.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 3f9fc05..da40438 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -274,13 +274,6 @@ list_builtin_module_names() void PySys_Init() { - extern long PyInt_GetMax Py_PROTO((void)); - extern char *Py_GetVersion Py_PROTO((void)); - extern char *Py_GetCopyright Py_PROTO((void)); - extern char *Py_GetPlatform Py_PROTO((void)); - extern char *Py_GetProgramFullPath Py_PROTO((void)); - extern char *Py_GetPrefix Py_PROTO((void)); - extern char *Py_GetExecPrefix Py_PROTO((void)); extern int fclose Py_PROTO((FILE *)); PyObject *m = Py_InitModule("sys", sys_methods); PyObject *v; |