#include #ifdef HAVE_WINDOWS_H #include #endif #ifdef HAVE_WINBASE_H # include #endif #ifdef HAVE_SYS_TIME_H #include #endif /* * broken implementation for WIN32. * FIXME: usec precision */ int gettimeofday(struct timeval *tv, struct timezone *tz) { if (tv) { time_t tm; time(&tm); tv->tv_sec = tm; tv->tv_usec = 0; } return 0; }