Deleting obsolete files and directories, adding v2-specific files and directories, updating existing files to v2. See README.v2 for more info

This commit is contained in:
Antonin Descampe
2008-07-31 18:47:41 +00:00
parent 8407e057c9
commit 7caaea18b7
158 changed files with 23230 additions and 31374 deletions

View File

@@ -59,11 +59,7 @@ typedef struct option
#define BADARG (int)':'
#define EMSG ""
/* As this class remembers its values from one Java call to the other, reset the values before each use */
void reset_options_reading() {
opterr = 1;
optind = 1;
}
/*
* getopt --
@@ -136,7 +132,7 @@ struct option *longopts, int totlen) {
char param = 1;
again:
if (optind >= argc || !argv[optind] || *argv[optind]!='-')
if (optind>argc || !argv[optind] || *argv[optind]!='-')
return -1;
if (argv[optind][0]=='-' && argv[optind][1]==0) {