aboutsummaryrefslogtreecommitdiffstats
path: root/src/systemtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemtime.c')
-rw-r--r--src/systemtime.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/systemtime.c b/src/systemtime.c
index f8b4794..c440c36 100644
--- a/src/systemtime.c
+++ b/src/systemtime.c
@@ -16,21 +16,6 @@
Copyright (c) 2010-2014 Jon Lund Steffensen <jonlst@gmail.com>
*/
-
-#include <stdio.h>
-#include <unistd.h>
-
-#ifndef _WIN32
-# if _POSIX_TIMERS > 0
-# include <time.h>
-# else
-# include <time.h>
-# include <sys/time.h>
-# endif
-#else
-# include <windows.h>
-#endif
-
#include "common.h"
@@ -47,7 +32,7 @@ systemtime_get_time(double *t)
/* FILETIME is tenths of microseconds since 1601-01-01 UTC */
*t = (i.QuadPart / 10000000.0) - 11644473600.0;
-#elif _POSIX_TIMERS > 0 /* POSIX timers */
+#elif defined(_POSIX_TIMERS) /* POSIX timers */
struct timespec now;
int r = clock_gettime(CLOCK_REALTIME, &now);
if (r < 0) {