ClamAV/zlib: Always include unistd.h to get declarations for things like open/close/lseek that gzip is using

git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@300774 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/MultiSource/Applications/ClamAV/zlib/zconf.h b/MultiSource/Applications/ClamAV/zlib/zconf.h
index 5e1d68a..0a15e15 100644
--- a/MultiSource/Applications/ClamAV/zlib/zconf.h
+++ b/MultiSource/Applications/ClamAV/zlib/zconf.h
@@ -8,6 +8,9 @@
 #ifndef ZCONF_H
 #define ZCONF_H
 
+/* Modified for llvm test-suite: */
+#include <unistd.h>
+
 /*
  * If you *really* need a unique prefix for all types and library functions,
  * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.