From b42c9662303d1a33ebe038d1895c08945cdbd40f Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 19:26:58 +0100 Subject: Cleanup and style update (avoid typedef) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/systemtime.c | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'src/systemtime.c') 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 */ - -#include -#include - -#ifndef _WIN32 -# if _POSIX_TIMERS > 0 -# include -# else -# include -# include -# endif -#else -# include -#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) { -- cgit v1.2.3-70-g09d2