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-w32-bb3d0fab3b46d64e93687bc30b405d0878eca296.tar.gz busybox-w32-bb3d0fab3b46d64e93687bc30b405d0878eca296.tar.bz2 busybox-w32-bb3d0fab3b46d64e93687bc30b405d0878eca296.zip | |
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 { | |||
| 64 | 64 | ||
| 65 | } archive_handle_t; | 65 | } archive_handle_t; |
| 66 | 66 | ||
| 67 | |||
| 68 | extern uint32_t gunzip_crc; | ||
| 69 | extern off_t gunzip_bytes_out; | ||
| 70 | |||
| 71 | |||
| 67 | extern archive_handle_t *init_handle(void); | 72 | extern archive_handle_t *init_handle(void); |
| 68 | 73 | ||
| 69 | extern char filter_accept_all(archive_handle_t *archive_handle); | 74 | extern char filter_accept_all(archive_handle_t *archive_handle); |
