- strip 399424 off the bss by making decompress_uncompress buffers config buffers.
[oweals/busybox.git] / archival / libunarchive / data_extract_to_stdout.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
4  */
5
6 #include "unarchive.h"
7 #include <unistd.h>
8
9 void data_extract_to_stdout(archive_handle_t *archive_handle)
10 {
11         bb_copyfd_size(archive_handle->src_fd, STDOUT_FILENO, archive_handle->file_header->size);
12 }