From ec667855740993a1c63eb2d2c64b4fc29d95a003 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Wed, 6 Sep 2023 03:32:33 +0200 Subject: Update README --- README | 1 + source/kit_test/shared.inl.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README b/README index e15bd1c..bb8ef18 100644 --- a/README +++ b/README @@ -13,6 +13,7 @@ Features - Big integer math - SHA-256 - System + - Time - Atomics - Condition variables - Mutual exclusion diff --git a/source/kit_test/shared.inl.h b/source/kit_test/shared.inl.h index b96897c..f000786 100644 --- a/source/kit_test/shared.inl.h +++ b/source/kit_test/shared.inl.h @@ -25,6 +25,7 @@ static int timespec_get(struct timespec *ts, int base) { if (ts == NULL || base != TIME_UTC) return 0; + FILETIME ft; ULARGE_INTEGER date; LONGLONG ticks; @@ -36,6 +37,7 @@ static int timespec_get(struct timespec *ts, int base) { _TIMESPEC_IMPL_UNIX_EPOCH_IN_TICKS); ts->tv_sec = ticks / _TIMESPEC_IMPL_TICKS_PER_SECONDS; ts->tv_nsec = (ticks % _TIMESPEC_IMPL_TICKS_PER_SECONDS) * 100; + return base; } # endif -- cgit v1.2.3