summaryrefslogtreecommitdiff
path: root/libstore/bunzip2.c
blob: ec0630ec33e5cdab1ddc4ab13baeec124333080a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"