gettimeofday.h 296 B

1234567891011121314151617
  1. #ifdef _WIN32
  2. #include <WinSock.h>
  3. /**
  4. Based on code seen at.
  5. http://www.winehq.org/pipermail/wine-devel/2003-June/018082.html
  6. http://msdn.microsoft.com/en-us/library/ms740560
  7. */
  8. int gettimeofday(struct timeval *tv, struct timezone *tz);
  9. #else
  10. #include <sys/time.h>
  11. #endif