From f70ef4f8606f99744252a804229d53a4d97601c1 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Sat, 22 Jul 2000 18:47:25 +0000 Subject: Mass ANSIfication of function definitions. Doesn't cover all 'extern' declarations yet, those come later. --- Python/getopt.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Python/getopt.c') diff --git a/Python/getopt.c b/Python/getopt.c index c5a3f62681..8af67fa94d 100644 --- a/Python/getopt.c +++ b/Python/getopt.c @@ -41,12 +41,9 @@ char * optarg = NULL; /* optional argument */ #ifndef __BEOS__ -int getopt(argc,argv,optstring) -int argc; -char *argv[]; -char optstring[]; +int getopt(int argc, char *argv[], char optstring[]) #else -int getopt( int argc, char *const *argv, const char *optstring ) +int getopt(int argc, char *const *argv, const char *optstring) #endif { static char *opt_ptr = ""; -- cgit v1.2.1