diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-22 00:45:27 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-22 00:45:27 +0000 |
commit | afc9ff99fd1cbf67eb6e313be247e2e53269a0dc (patch) | |
tree | cf6b800fcad5a740692914f223846b170c639707 /archival | |
parent | 714701c890b5f03253c5ecdb7367c4258ce78715 (diff) | |
download | busybox-w32-afc9ff99fd1cbf67eb6e313be247e2e53269a0dc.tar.gz busybox-w32-afc9ff99fd1cbf67eb6e313be247e2e53269a0dc.tar.bz2 busybox-w32-afc9ff99fd1cbf67eb6e313be247e2e53269a0dc.zip |
removal of commented-out cruft
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/data_extract_to_stdout.c | 1 | ||||
-rw-r--r-- | archival/libunarchive/filter_accept_list_reassign.c | 10 | ||||
-rw-r--r-- | archival/libunarchive/get_header_tar_bz2.c | 7 |
3 files changed, 3 insertions, 15 deletions
diff --git a/archival/libunarchive/data_extract_to_stdout.c b/archival/libunarchive/data_extract_to_stdout.c index 2e266c046..d87a4a595 100644 --- a/archival/libunarchive/data_extract_to_stdout.c +++ b/archival/libunarchive/data_extract_to_stdout.c | |||
@@ -4,7 +4,6 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "unarchive.h" | 6 | #include "unarchive.h" |
7 | //#include <unistd.h> | ||
8 | 7 | ||
9 | void data_extract_to_stdout(archive_handle_t *archive_handle) | 8 | void data_extract_to_stdout(archive_handle_t *archive_handle) |
10 | { | 9 | { |
diff --git a/archival/libunarchive/filter_accept_list_reassign.c b/archival/libunarchive/filter_accept_list_reassign.c index 04b678007..0fb536fad 100644 --- a/archival/libunarchive/filter_accept_list_reassign.c +++ b/archival/libunarchive/filter_accept_list_reassign.c | |||
@@ -5,17 +5,13 @@ | |||
5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <stdlib.h> | ||
9 | #include <string.h> | ||
10 | #include <unistd.h> | ||
11 | |||
12 | #include "libbb.h" | 8 | #include "libbb.h" |
13 | #include "unarchive.h" | 9 | #include "unarchive.h" |
14 | 10 | ||
15 | /* | 11 | /* |
16 | * Reassign the subarchive metadata parser based on the filename extension | 12 | * Reassign the subarchive metadata parser based on the filename extension |
17 | * e.g. if its a .tar.gz modify archive_handle->sub_archive to process a .tar.gz | 13 | * e.g. if its a .tar.gz modify archive_handle->sub_archive to process a .tar.gz |
18 | * or if its a .tar.bz2 make archive_handle->sub_archive handle that | 14 | * or if its a .tar.bz2 make archive_handle->sub_archive handle that |
19 | */ | 15 | */ |
20 | char filter_accept_list_reassign(archive_handle_t *archive_handle) | 16 | char filter_accept_list_reassign(archive_handle_t *archive_handle) |
21 | { | 17 | { |
diff --git a/archival/libunarchive/get_header_tar_bz2.c b/archival/libunarchive/get_header_tar_bz2.c index e7a80fc41..d8715c0bb 100644 --- a/archival/libunarchive/get_header_tar_bz2.c +++ b/archival/libunarchive/get_header_tar_bz2.c | |||
@@ -3,13 +3,6 @@ | |||
3 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 3 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <sys/types.h> | ||
7 | #include <sys/wait.h> | ||
8 | #include <signal.h> | ||
9 | #include <stdio.h> | ||
10 | #include <stdlib.h> | ||
11 | #include <string.h> | ||
12 | #include <unistd.h> | ||
13 | #include "libbb.h" | 6 | #include "libbb.h" |
14 | #include "unarchive.h" | 7 | #include "unarchive.h" |
15 | 8 | ||