blob: 984e4186d83c4bb1a6552d9f8641a48add58bb51 [file] [log] [blame]
/* vi: set sw=4 ts=4: */
/*
* bzcat.c - decompress stdin to stdout using bunzip2.
*/
#include "toys.h"
void bzcat_main(void)
{
bunzipStream(0, 1);
}