Skip to content

Commit 61e70bc

Browse files
author
guido
committed
don't use function prototypes
git-svn-id: http://svn.python.org/projects/python/trunk@4654 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent cd162b5 commit 61e70bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Python/getopt.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ int optind = 1; /* index into argv array */
3737
char * optarg = NULL; /* optional argument */
3838

3939

40-
int getopt(int argc, char *argv[], const char optstring[])
40+
int getopt(argc,argv,optstring)
41+
int argc;
42+
char *argv[];
43+
char optstring[];
4144
{
4245
static char *opt_ptr = "";
4346
register char *ptr;

0 commit comments

Comments
 (0)