diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/kit/time.h | 24 | ||||
-rw-r--r-- | source/kit_test/shared.inl.h | 14 |
2 files changed, 13 insertions, 25 deletions
diff --git a/source/kit/time.h b/source/kit/time.h index af36211..e16d3a2 100644 --- a/source/kit/time.h +++ b/source/kit/time.h @@ -9,30 +9,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> - -static int timespec_get(struct timespec *ts, int base) { - // TODO - // Windows implementation. - // -} -# else -static int timespec_get(struct timespec *ts, int base) { - // TODO - // Posix implementation. - // -} +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN 1 # endif +# include <Windows.h> + +static int timespec_get(struct timespec *ts, int base) { } #endif #endif 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 |