diff options
author | Guido van Rossum <guido@python.org> | 1997-07-19 19:51:43 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-19 19:51:43 +0000 |
commit | 9b87f2ff7565f7708d7e444cc66d9d294627ecfd (patch) | |
tree | 0042fac855ed4c9adcb4598bcd56b4855caf822f /Python/sysmodule.c | |
parent | 2eaeb45653205ac4a8a79cd34aef18fec569c660 (diff) | |
download | cpython-9b87f2ff7565f7708d7e444cc66d9d294627ecfd.tar.gz |
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 3f9fc05a74..da40438349 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; |