Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-03 04:57:25 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-03 04:57:25 +0300
commitbb3d0fab3b46d64e93687bc30b405d0878eca296 (patch)
tree173e0171c3c09d353febba4938f1c9cdc39c248c /include/unarchive.h
parent75fa4eb1551ddc6c4436bb2614f4754ed9942b5f (diff)
extern variable declaration in a .c file is heresy - fixing it
Diffstat (limited to 'include/unarchive.h')
-rw-r--r--include/unarchive.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/unarchive.h b/include/unarchive.h
index 88c00882c..843f68f73 100644
--- a/include/unarchive.h
+++ b/include/unarchive.h
@@ -64,6 +64,11 @@ typedef struct archive_handle_s {
} archive_handle_t;
+
+extern uint32_t gunzip_crc;
+extern off_t gunzip_bytes_out;
+
+
extern archive_handle_t *init_handle(void);
extern char filter_accept_all(archive_handle_t *archive_handle);