diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-06 03:32:33 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-06 03:32:33 +0200 |
commit | ec667855740993a1c63eb2d2c64b4fc29d95a003 (patch) | |
tree | c23456053d294d30e6d0f4be518e8f2583f04b3f /source/kit_test | |
parent | 50257aaab2fe845e515058fb42e1aaa7f2e6fae8 (diff) | |
download | kit-ec667855740993a1c63eb2d2c64b4fc29d95a003.zip |
Update README
Diffstat (limited to 'source/kit_test')
-rw-r--r-- | source/kit_test/shared.inl.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 |