updated util's time for Windows compatibility

Correctly measures time on Posix systems when running with
Multi-threading

Todo : check Windows measurement under multi-threading
diff --git a/lib/common/threading.c b/lib/common/threading.c
index 38bbab0..b56e594 100644
--- a/lib/common/threading.c
+++ b/lib/common/threading.c
@@ -15,6 +15,12 @@
  * This file will hold wrapper for systems, which do not support pthreads
  */
 
+/* ======   Compiler specifics   ====== */
+#if defined(_MSC_VER)
+#  pragma warning(disable : 4206)        /* disable: C4206: translation unit is empty (when ZSTD_MULTITHREAD is not defined) */
+#endif
+
+
 #if defined(ZSTD_MULTITHREAD) && defined(_WIN32)
 
 /**