fixed cmake error (missing errno)

dev
Yann Collet 2016-07-04 01:37:30 +02:00
parent 00d44abe71
commit 92c986b4e8
1 changed files with 2 additions and 1 deletions

View File

@ -31,9 +31,10 @@
/*-************************************
* Includes
**************************************/
#include "util.h" /* Compiler options, UTIL_HAS_CREATEFILELIST, errno */
#include "util.h" /* Compiler options, UTIL_HAS_CREATEFILELIST */
#include <string.h> /* strcmp, strlen */
#include <ctype.h> /* toupper */
#include <errno.h>
#include "fileio.h"
#ifndef ZSTD_NOBENCH
# include "bench.h" /* BMK_benchFiles, BMK_SetNbIterations */