aboutsummaryrefslogtreecommitdiff
path: root/deps/gzfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gzfile.h')
-rw-r--r--deps/gzfile.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/deps/gzfile.h b/deps/gzfile.h
new file mode 100644
index 0000000..2df4842
--- /dev/null
+++ b/deps/gzfile.h
@@ -0,0 +1,12 @@
+
+#ifndef _GZFILE_H
+#define _GZFILE_H
+
+struct gzFile_s
+{
+ unsigned have;
+ unsigned char *next;
+ z_off64_t pos;
+};
+
+#endif