aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
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{