aboutsummaryrefslogtreecommitdiff
path: root/exec/tailor.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-12-14 04:33:25 +0000
committerRoland McGrath <roland@gnu.org>1994-12-14 04:33:25 +0000
commita672de27ad213fa0744810b33a39f49cb624fca3 (patch)
tree23da84219cb41cf4b75201f129c52e9f19e8f7d6 /exec/tailor.h
parentf69200c2e94600d8b704383a537029cc42ca075a (diff)
downloadhurd-a672de27ad213fa0744810b33a39f49cb624fca3.tar.gz
hurd-a672de27ad213fa0744810b33a39f49cb624fca3.tar.bz2
hurd-a672de27ad213fa0744810b33a39f49cb624fca3.zip
Initial revision
Diffstat (limited to 'exec/tailor.h')
-rw-r--r--exec/tailor.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/exec/tailor.h b/exec/tailor.h
new file mode 100644
index 00000000..d207af55
--- /dev/null
+++ b/exec/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)