mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
Dominick Meglio's fix to make our private gettimeofday() use the ares_
namespace
This commit is contained in:
parent
a0edfb90c2
commit
9ebe4ab60c
@ -18,7 +18,8 @@ struct iovec
|
||||
#define getpid() _getpid()
|
||||
|
||||
int strcasecmp(const char *a, const char *b);
|
||||
int gettimeofday(struct timeval *tv, struct timezone *tz);
|
||||
int ares_gettimeofday(struct timeval *tv, struct timezone *tz);
|
||||
#define gettimeofday(tv,tz) ares_gettimeofday(tv,tz)
|
||||
|
||||
#define NS_CMPRSFLGS 0xc0
|
||||
|
||||
|
@ -25,7 +25,7 @@ strcasecmp(const char *a, const char *b)
|
||||
}
|
||||
|
||||
int
|
||||
gettimeofday(struct timeval *tv, struct timezone *tz)
|
||||
ares_gettimeofday(struct timeval *tv, struct timezone *tz)
|
||||
{
|
||||
FILETIME ft;
|
||||
LARGE_INTEGER li;
|
||||
|
Loading…
Reference in New Issue
Block a user