blob: d207af55a19fe7590181afbcf7b24af9afce8288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)
|