Mercurial > hg > toybox
view toys/bzcat.c @ 90:7c77c6ec17ee
Add "make defconfig". Modify global options to start with CONFIG_TOYBOX_.
author | Rob Landley <rob@landley.net> |
---|---|
date | Wed, 31 Jan 2007 14:37:01 -0500 |
parents | 67ee3a0b76e1 |
children | 25447caf1b4b |
line wrap: on
line source
/* 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; }