diff options
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 | { |