From 92c986b4e84f9ee58ab689c1ee1e67d4356af7c0 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 4 Jul 2016 01:37:30 +0200 Subject: [PATCH] fixed cmake error (missing errno) --- programs/zstdcli.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */