aboutsummaryrefslogtreecommitdiff
path: root/dpkg_deb.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-04-11 01:37:03 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-04-11 01:37:03 +0000
commit9d53c8ab74ecb2be62ebf4c61350b842787cc6b9 (patch)
treec351bc7377b948c358f0f9c7da1f225b6f349ee3 /dpkg_deb.c
parent93ffa950bfd349c8d8ff40f1f862f2b7483584d4 (diff)
downloadbusybox-9d53c8ab74ecb2be62ebf4c61350b842787cc6b9.tar.gz
Move get_ar_headers to libbb, make dpkg_deb.c independent of ar.c
Diffstat (limited to 'dpkg_deb.c')
-rw-r--r--dpkg_deb.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/dpkg_deb.c b/dpkg_deb.c
index 8239c3c43..9f78e642c 100644
--- a/dpkg_deb.c
+++ b/dpkg_deb.c
@@ -31,18 +31,6 @@
extern int gz_open(FILE *compressed_file, int *pid);
extern void gz_close(int gunzip_pid);
-typedef struct ar_headers_s {
- char *name;
- size_t size;
- uid_t uid;
- gid_t gid;
- mode_t mode;
- time_t mtime;
- off_t offset;
- struct ar_headers_s *next;
-} ar_headers_t;
-
-extern ar_headers_t get_ar_headers(int srcFd);
extern int tar_unzip_init(int tarFd);
extern int readTarFile(int tarFd, int extractFlag, int listFlag,
int tostdoutFlag, int verboseFlag, char** extractList, char** excludeList);