]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed minor warning (empty translation unit)
authorYann Collet <cyan@fb.com>
Fri, 1 Sep 2017 07:12:07 +0000 (00:12 -0700)
committerYann Collet <cyan@fb.com>
Fri, 1 Sep 2017 07:12:07 +0000 (00:12 -0700)
lib/common/threading.c

index 4e47b6b91bc821c0dfea854de1a1e6ed6b4e2c29..a82c975b218f57fbbb50aac304d6d94ad7a9083f 100644 (file)
  * This file will hold wrapper for systems, which do not support pthreads
  */
 
-/* When ZSTD_MULTITHREAD is not defined, this file would become an empty translation unit.
- * Include some ISO C header code to prevent this and portably avoid related warnings.
- * (Visual C++: C4206 / GCC: -Wpedantic / Clang: -Wempty-translation-unit)
- */
-#include <stddef.h>
-
+/* create fake symbol to avoid empty trnaslation unit warning */
+int g_ZSTD_threading_useles_symbol;
 
 #if defined(ZSTD_MULTITHREAD) && defined(_WIN32)