aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/minizip/unzip.h2
-rw-r--r--contrib/minizip/zip.h2
-rw-r--r--zutil.h4
3 files changed, 8 insertions, 0 deletions
diff --git a/contrib/minizip/unzip.h b/contrib/minizip/unzip.h
index ceb614e7..8e78564e 100644
--- a/contrib/minizip/unzip.h
+++ b/contrib/minizip/unzip.h
@@ -70,6 +70,8 @@ typedef unzFile__ *unzFile;
70typedef voidp unzFile; 70typedef voidp unzFile;
71#endif 71#endif
72 72
73extern const char unz_copyright[];
74
73 75
74#define UNZ_OK (0) 76#define UNZ_OK (0)
75#define UNZ_END_OF_LIST_OF_FILE (-100) 77#define UNZ_END_OF_LIST_OF_FILE (-100)
diff --git a/contrib/minizip/zip.h b/contrib/minizip/zip.h
index 9526eacd..2a0fac67 100644
--- a/contrib/minizip/zip.h
+++ b/contrib/minizip/zip.h
@@ -69,6 +69,8 @@ typedef zipFile__ *zipFile;
69typedef voidp zipFile; 69typedef voidp zipFile;
70#endif 70#endif
71 71
72extern const char zip_copyright[];
73
72#define ZIP_OK (0) 74#define ZIP_OK (0)
73#define ZIP_EOF (0) 75#define ZIP_EOF (0)
74#define ZIP_ERRNO (Z_ERRNO) 76#define ZIP_ERRNO (Z_ERRNO)
diff --git a/zutil.h b/zutil.h
index acc1907f..0f983f73 100644
--- a/zutil.h
+++ b/zutil.h
@@ -36,6 +36,10 @@
36 define "local" for the non-static meaning of "static", for readability 36 define "local" for the non-static meaning of "static", for readability
37 (compile with -Dlocal if your debugger can't find static symbols) */ 37 (compile with -Dlocal if your debugger can't find static symbols) */
38 38
39extern const char deflate_copyright[];
40extern const char inflate_copyright[];
41extern const char inflate9_copyright[];
42
39typedef unsigned char uch; 43typedef unsigned char uch;
40typedef uch FAR uchf; 44typedef uch FAR uchf;
41typedef unsigned short ush; 45typedef unsigned short ush;