From 534ac094f9d63ba1cae95c99fba2c532f8eb31fb Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 19 Jul 1997 19:51:43 +0000 Subject: Removed a bunch of extern declarations of functions that are now properly declared in Python.h. --- Python/sysmodule.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Python/sysmodule.c') 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; -- cgit v1.2.1