summaryrefslogtreecommitdiff
path: root/libstore/tailor.h
diff options
context:
space:
mode:
Diffstat (limited to 'libstore/tailor.h')
-rw-r--r--libstore/tailor.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libstore/tailor.h b/libstore/tailor.h
new file mode 100644
index 00000000..d207af55
--- /dev/null
+++ b/libstore/tailor.h
@@ -0,0 +1,14 @@
+
+#ifndef get_char
+# define get_char() get_byte()
+#endif
+
+#ifndef put_char
+# define put_char(c) put_byte(c)
+#endif
+
+#include <stdio.h>
+#define fprintf(stream, fmt...) /* ignore useless error msgs */ ((void)0)
+
+void (*unzip_error) (const char *msg);
+#define error(msg) (*unzip_error) (msg)