From: Yann Collet Date: Sun, 3 Jul 2016 23:37:30 +0000 (+0200) Subject: fixed cmake error (missing errno) X-Git-Tag: v0.7.3^2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92c986b4e84f9ee58ab689c1ee1e67d4356af7c0;p=thirdparty%2Fzstd.git fixed cmake error (missing errno) --- diff --git a/programs/zstdcli.c b/programs/zstdcli.c index d1693a3f8..129936e15 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -31,9 +31,10 @@ /*-************************************ * Includes **************************************/ -#include "util.h" /* Compiler options, UTIL_HAS_CREATEFILELIST, errno */ +#include "util.h" /* Compiler options, UTIL_HAS_CREATEFILELIST */ #include /* strcmp, strlen */ #include /* toupper */ +#include #include "fileio.h" #ifndef ZSTD_NOBENCH # include "bench.h" /* BMK_benchFiles, BMK_SetNbIterations */