summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-19 19:51:43 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-19 19:51:43 (GMT)
commit534ac094f9d63ba1cae95c99fba2c532f8eb31fb (patch)
tree5c120bac648a2485a9567a548c1d7a9c1313882a /Modules/main.c
parent57d8e3f1c7207926cab62b45be35bc44d33f00da (diff)
downloadcpython-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 'Modules/main.c')
-rw-r--r--Modules/main.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/main.c b/Modules/main.c
index 801804b..5abf2a6 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -47,12 +47,6 @@ extern char *optarg;
extern int getopt(); /* PROTO((int, char **, char *)); -- not standardized */
-/* Subroutines that live in their own file */
-extern char *Py_GetVersion();
-extern char *Py_GetPlatform();
-extern char *Py_GetCopyright();
-
-
/* For Py_GetArgcArgv(); set by main() */
static char **orig_argv;
static int orig_argc;