diff options
Diffstat (limited to 'libstore/bunzip2.c')
-rw-r--r-- | libstore/bunzip2.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libstore/bunzip2.c b/libstore/bunzip2.c new file mode 100644 index 00000000..ec0630ec --- /dev/null +++ b/libstore/bunzip2.c @@ -0,0 +1,13 @@ +#include <errno.h> + +extern void do_bunzip2 (void); /* Entry point to bunzip2 engine. */ + +static error_t +DO_UNZIP (void) +{ + do_bunzip2 (); + return 0; +} + +#define UNZIP bunzip2 +#include "unzipstore.c" |