From: Guido van Rossum Date: Fri, 20 Jan 1995 16:54:36 +0000 (+0000) Subject: don't use function prototypes X-Git-Tag: v1.2b3~136 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10bb1c46f1cbf2b4cca6cf85536c038252273dec;p=thirdparty%2FPython%2Fcpython.git don't use function prototypes --- diff --git a/Python/getopt.c b/Python/getopt.c index e1ec698702cf..c08f07fa03ba 100644 --- a/Python/getopt.c +++ b/Python/getopt.c @@ -37,7 +37,10 @@ int optind = 1; /* index into argv array */ char * optarg = NULL; /* optional argument */ -int getopt(int argc, char *argv[], const char optstring[]) +int getopt(argc,argv,optstring) +int argc; +char *argv[]; +char optstring[]; { static char *opt_ptr = ""; register char *ptr;