blob: 5c079467f7a7544ff476f7f32a8f3ea37ab1d113 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* This is a dummy zip.h to allow the source files shared with Zip (crypt.c,
crc32.c, crctab.c, ttyio.c) to compile for UnZip. */
#ifndef __zip_h /* don't include more than once */
#define __zip_h
#define UNZIP_INTERNAL
#include "unzip.h"
#define local static
#define ZE_MEM PK_MEM
#define ziperr(c, h) return
#endif /* !__zip_h */
|