Merge pull request #311 from AstroAir/main

Update time.c
This commit is contained in:
BLUELOVETH 2024-09-24 16:27:15 +08:00 committed by GitHub
commit fc0d94c12e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,7 @@
static bool get_ns(int64_t* out) {
struct timespec tms;
#ifdef __ANDROID__
#if defined( __ANDROID__) || defined(__MINGW32__) || defined(__MINGW64__)
clock_gettime(CLOCK_REALTIME, &tms);
#else
/* The C11 way */