Provide fallback version of getopt_long instead of checking for it's presense every time it is used

darcs-hash:20060828114305-ac50b-f4aad19e936fa42bbe84e51e72aa32445a469527.gz
This commit is contained in:
axel
2006-08-28 21:43:05 +10:00
parent 202d29de88
commit 548e379d6a
6 changed files with 48 additions and 24 deletions

View File

@@ -1076,3 +1076,18 @@ int killpg( int pgr, int sig )
return kill( -pgr, sig );
}
#endif
#ifndef HAVE_WORKING_GETOPT_LONG
int getopt_long(int argc,
char * const argv[],
const char *optstring,
const struct option *longopts,
int *longindex)
{
return getopt( argc, argv, optstring );
}
#endif