From: Yann Collet Date: Fri, 13 Jan 2023 19:38:27 +0000 (-0800) Subject: missing #include for Windows X-Git-Tag: v1.5.4^2~50^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2086e7396e659143dfe0c6d292e63f1332ec496d;p=thirdparty%2Fzstd.git missing #include for Windows --- diff --git a/tests/fuzzer.c b/tests/fuzzer.c index cb46dc45b..43fa1158d 100644 --- a/tests/fuzzer.c +++ b/tests/fuzzer.c @@ -25,7 +25,8 @@ #include /* free */ #include /* fgets, sscanf */ #include /* strcmp */ -#undef NDEBUG +#include /* time(), time_t */ +#undef NDEBUG /* always enable assert() */ #include #define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressContinue, ZSTD_compressBlock */ #include "debug.h" /* DEBUG_STATIC_ASSERT */