Declare variable only if needed.

oldstable
Gerald Pfeifer 2003-01-23 21:21:50 +00:00 committed by Alexandre Julliard
parent dda7f979d5
commit 714148c555
1 changed files with 4 additions and 1 deletions

View File

@ -280,7 +280,10 @@ int main(int argc,char *argv[])
{
extern char* optarg;
extern int optind;
int optc, opti = 0;
int optc;
#ifdef HAVE_GETOPT_LONG
int opti = 0;
#endif
int stdinc = 1;
int lose = 0;
int ret;