diff options
Diffstat (limited to 'source/kit_test')
-rw-r--r-- | source/kit_test/shared.inl.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/source/kit_test/shared.inl.h b/source/kit_test/shared.inl.h index f80f7ff..07cb966 100644 --- a/source/kit_test/shared.inl.h +++ b/source/kit_test/shared.inl.h @@ -14,22 +14,20 @@ # ifndef TIME_UTC # define TIME_UTC 1 +# endif +# ifdef __MINGW32__ struct timespec { time_t tv_sec; long tv_nsec; }; -# if defined(_WIN32) && !defined(__CYGWIN__) -# ifndef WIN32_LEAN_AND_MEAN -# define WIN32_LEAN_AND_MEAN 1 -# endif -# include <Windows.h> +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN 1 +# endif +# include <Windows.h> static int timespec_get(struct timespec *ts, int base) { } -# else -static int timespec_get(struct timespec *ts, int base) { } -# endif # endif #endif // kit/time.h |