diff options
Diffstat (limited to 'archival/bunzip2.c')
-rw-r--r-- | archival/bunzip2.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/archival/bunzip2.c b/archival/bunzip2.c index 714dac0..a970aeb 100644 --- a/archival/bunzip2.c +++ b/archival/bunzip2.c @@ -6,12 +6,6 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <fcntl.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> - #include "busybox.h" #include "unarchive.h" @@ -30,7 +24,7 @@ int bunzip2_main(int argc, char **argv) filename = argv[optind]; if ((filename) && (filename[0] != '-') && (filename[1] != '\0')) { /* Open input file */ - src_fd = bb_xopen(filename, O_RDONLY); + src_fd = xopen(filename, O_RDONLY); } else { src_fd = STDIN_FILENO; filename = 0; @@ -53,7 +47,7 @@ int bunzip2_main(int argc, char **argv) } xstat(filename, &stat_buf); *extension=0; - dst_fd = bb_xopen3(filename, O_WRONLY | O_CREAT, stat_buf.st_mode); + dst_fd = xopen3(filename, O_WRONLY | O_CREAT, stat_buf.st_mode); } else dst_fd = STDOUT_FILENO; status = uncompressStream(src_fd, dst_fd); if(filename) { |