diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-11 16:49:07 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-04-11 16:49:07 +0000 |
commit | 09ef028c37075d4d305eb1d7ef2c559ac2296f42 (patch) | |
tree | 426561e47fa01d7ecdfd625fd9c340fb6f75ae2f /tar.c | |
parent | e25c59ebd945db88673b3e0f2bc22c711d5bdee6 (diff) | |
download | busybox-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -133,7 +133,7 @@ struct TarInfo | |||
133 | typedef struct TarInfo TarInfo; | 133 | typedef 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. */ |
136 | extern int readTarFile(int tarFd, int extractFlag, int listFlag, | 136 | static 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 | */ |
574 | extern int readTarFile(int tarFd, int extractFlag, int listFlag, | 574 | static 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 | { |