diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-09 09:47:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-09 09:47:51 +0000 |
commit | 3a80dc7f3e1ce843b904bae1f448607c529d5a09 (patch) | |
tree | 3cf41533bbed8428c063ab772c5f4b5fe0b2ed3b | |
parent | bd42a2acb17397eb8f0b382e25db054d328b0990 (diff) |
timezone dummy to build better on Windows - Gisle Vanem
-rw-r--r-- | ares/nameser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ares/nameser.h b/ares/nameser.h index 73a9e1842..3553f8bad 100644 --- a/ares/nameser.h +++ b/ares/nameser.h @@ -21,7 +21,8 @@ struct iovec #define getpid() _getpid() -int strcasecmp(const char *a, const char *b); +struct timezone { int dummy; }; + int ares_gettimeofday(struct timeval *tv, struct timezone *tz); #define gettimeofday(tv,tz) ares_gettimeofday(tv,tz) |