diff options
Diffstat (limited to 'exec/tailor.h')
-rw-r--r-- | exec/tailor.h | 14 |
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) |