minmea_compat_windows.h 583 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright © 2017 Kosma Moczek <kosma@cloudyourcar.com>
  3. * This program is free software. It comes without any warranty, to the extent
  4. * permitted by applicable law. You can redistribute it and/or modify it under
  5. * the terms of the Do What The Fuck You Want To Public License, Version 2, as
  6. * published by Sam Hocevar. See the COPYING file for more details.
  7. */
  8. #if defined(_MSC_VER)
  9. #if !defined(HAVE_STRUCT_TIMESPEC)
  10. struct timespec {
  11. time_t tv_sec;
  12. long tv_nsec;
  13. };
  14. #endif
  15. #define inline __inline
  16. #define timegm _mkgmtime
  17. #endif
  18. /* vim: set ts=4 sw=4 et: */