aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-11 16:49:07 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-11 16:49:07 +0000
commit09ef028c37075d4d305eb1d7ef2c559ac2296f42 (patch)
tree426561e47fa01d7ecdfd625fd9c340fb6f75ae2f /tar.c
parente25c59ebd945db88673b3e0f2bc22c711d5bdee6 (diff)
downloadbusybox-w32-09ef028c37075d4d305eb1d7ef2c559ac2296f42.tar.gz
busybox-w32-09ef028c37075d4d305eb1d7ef2c559ac2296f42.tar.bz2
busybox-w32-09ef028c37075d4d305eb1d7ef2c559ac2296f42.zip
readTarFile changed from exter nto static
git-svn-id: svn://busybox.net/trunk/busybox@2318 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tar.c b/tar.c
index 15d050c5a..7cfad72b5 100644
--- a/tar.c
+++ b/tar.c
@@ -133,7 +133,7 @@ struct TarInfo
133typedef struct TarInfo TarInfo; 133typedef struct TarInfo TarInfo;
134 134
135/* Local procedures to restore files from a tar file. */ 135/* Local procedures to restore files from a tar file. */
136extern int readTarFile(int tarFd, int extractFlag, int listFlag, 136static int readTarFile(int tarFd, int extractFlag, int listFlag,
137 int tostdoutFlag, int verboseFlag, char** extractList, 137 int tostdoutFlag, int verboseFlag, char** extractList,
138 char** excludeList); 138 char** excludeList);
139 139
@@ -571,7 +571,7 @@ static int extract_file(char **extract_files, const char *file)
571 * Read a tar file and extract or list the specified files within it. 571 * Read a tar file and extract or list the specified files within it.
572 * If the list is empty than all files are extracted or listed. 572 * If the list is empty than all files are extracted or listed.
573 */ 573 */
574extern int readTarFile(int tarFd, int extractFlag, int listFlag, 574static int readTarFile(int tarFd, int extractFlag, int listFlag,
575 int tostdoutFlag, int verboseFlag, char** extractList, 575 int tostdoutFlag, int verboseFlag, char** extractList,
576 char** excludeList) 576 char** excludeList)
577{ 577{