summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-11-22 03:41:26 +0000
committerYang Tse <yangsita@gmail.com>2009-11-22 03:41:26 +0000
commit738e547815c9a799fa12c63715be13b7046fc25a (patch)
tree218906fc3eb5a7146e74153cc7784bd250424a8c
parent5ec8a3ae0635f07628a9a2b5493a3d43abf629b3 (diff)
downloadgnurl-738e547815c9a799fa12c63715be13b7046fc25a.tar.gz
gnurl-738e547815c9a799fa12c63715be13b7046fc25a.tar.bz2
gnurl-738e547815c9a799fa12c63715be13b7046fc25a.zip
Fix name space pollution.
-rw-r--r--ares/ares_getopt.c2
-rw-r--r--ares/ares_getopt.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/ares/ares_getopt.c b/ares/ares_getopt.c
index 59f3b8834..b3cbb012d 100644
--- a/ares/ares_getopt.c
+++ b/ares/ares_getopt.c
@@ -51,7 +51,7 @@
int opterr = 1, /* if error message should be printed */
optind = 1; /* index into parent argv vector */
-static int optopt; /* character checked for validity */
+int optopt = 0; /* character checked for validity */
static int optreset; /* reset getopt */
char *optarg; /* argument associated with option */
diff --git a/ares/ares_getopt.h b/ares/ares_getopt.h
index e0eb28323..3c8074930 100644
--- a/ares/ares_getopt.h
+++ b/ares/ares_getopt.h
@@ -33,15 +33,15 @@
int ares_getopt(int nargc, char * const nargv[], const char *ostr);
-#if defined(WATT32)
-#undef optarg
-#undef optind
-#undef opterr
-#endif
+#define optarg ares_optarg
+#define optind ares_optind
+#define opterr ares_opterr
+#define optopt ares_optopt
+#define optreset ares_optreset
extern char *optarg;
extern int optind;
extern int opterr;
-
+extern int optopt;
#endif /* ARES_GETOPT_H */