diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2007-02-06 18:56:34 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2007-02-06 18:56:34 +0000 |
commit | 1fa9ef246ad15fe83ee45d936c2f43dbc86b67e8 (patch) | |
tree | dc249fe912db7ed455e7d7cc7274616a15d7c27b /ares/ahost.c | |
parent | e12220cc4cdc0fe807b23fecbcfa20f8fc14001d (diff) | |
download | curl-1fa9ef246ad15fe83ee45d936c2f43dbc86b67e8.tar.gz |
Include <sys/time.h> and <unistd.h> inside HAVE_x_H.
Added 'optind' and 'optarg' as in adig.c.
Diffstat (limited to 'ares/ahost.c')
-rw-r--r-- | ares/ahost.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ares/ahost.c b/ares/ahost.c index 55d47a416..8f6b671af 100644 --- a/ares/ahost.c +++ b/ares/ahost.c @@ -19,13 +19,17 @@ #include <sys/types.h> #if !defined(WIN32) || defined(WATT32) +#ifdef HAVE_SYS_TIME_H #include <sys/time.h> +#endif #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> +#ifdef HAVE_UNISTD_H #include <unistd.h> #endif +#endif #include <stdio.h> #include <stdlib.h> @@ -40,6 +44,11 @@ #include "inet_ntop.h" #include "inet_net_pton.h" +#ifndef optind +extern int optind; +extern char *optarg; +#endif + #ifndef INADDR_NONE #define INADDR_NONE 0xffffffff #endif |