aboutsummaryrefslogtreecommitdiff
path: root/toys/bzcat.c
blob: 348a593903eefbbe3609b8d4cec91f1b77b373b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* vi: set sw=4 ts=4: */
/*
 * bzcat.c - decompress stdin to stdout using bunzip2.
 */

#include "toys.h"

int bzcat_main(void)
{
	bunzipStream(0, 1);

	return 0;
}