diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-03 01:57:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-03 01:57:25 +0000 |
commit | bb3d0fab3b46d64e93687bc30b405d0878eca296 (patch) | |
tree | 173e0171c3c09d353febba4938f1c9cdc39c248c /include | |
parent | 75fa4eb1551ddc6c4436bb2614f4754ed9942b5f (diff) | |
download | busybox-bb3d0fab3b46d64e93687bc30b405d0878eca296.tar.gz |
extern variable declaration in a .c file is heresy - fixing it
Diffstat (limited to 'include')
-rw-r--r-- | include/unarchive.h | 5 |
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); |