blueloveTH 1 year ago
parent
commit
8a98208a75
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/modules/time.c

+ 2 - 2
src/modules/time.c

@@ -1,12 +1,12 @@
 #include "pocketpy/pocketpy.h"
-#include "pocketpy/interpreter/vm.h"
 #include <time.h>
+#include <assert.h>
 
 #define NANOS_PER_SEC 1000000000
 
 int64_t time_ns() {
     struct timespec tms;
-#if defined( __ANDROID__) || defined(__MINGW32__) || defined(__MINGW64__)
+#if defined(__ANDROID__) || defined(__MINGW32__) || defined(__MINGW64__) || !defined(TIME_UTC)
     clock_gettime(CLOCK_REALTIME, &tms);
 #else
     /* The C11 way */