Kaydet (Commit) 10bb1c46 authored tarafından Guido van Rossum's avatar Guido van Rossum

don't use function prototypes

üst 46c76a6c
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment