| 126 | #if defined(_WIN32) && !defined(__CYGWIN__) |
| 127 | #include <sys/timeb.h> |
| 128 | void msGettimeofday(struct mstimeval* tp, void* tzp) |
| 129 | { |
| 130 | struct _timeb theTime; |
| 131 | |
| 132 | _ftime(&theTime); |
| 133 | tp->tv_sec = theTime.time; |
| 134 | tp->tv_usec = theTime.millitm * 1000; |
| 135 | } |
| 136 | #endif |
| 137 | |
| 138 | #if defined(_WIN32) && !defined(__CYGWIN__) |
no outgoing calls
no test coverage detected