aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-03 01:57:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-03 01:57:25 +0000
commitbb3d0fab3b46d64e93687bc30b405d0878eca296 (patch)
tree173e0171c3c09d353febba4938f1c9cdc39c248c /include
parent75fa4eb1551ddc6c4436bb2614f4754ed9942b5f (diff)
downloadbusybox-bb3d0fab3b46d64e93687bc30b405d0878eca296.tar.gz
extern variable declaration in a .c file is heresy - fixing it
Diffstat (limited to 'include')
-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);