diff options
author | Bernhard Reutner-Fischer | 2006-04-02 21:50:01 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-04-02 21:50:01 +0000 |
commit | cfb53dfd5ec455bc0299654d4bb06b30dd5d1373 (patch) | |
tree | c68ec71f4fd0f658ba9d50a3ef14d79f4611e609 /archival/libunarchive/decompress_bunzip2.c | |
parent | 7ab5f4d03d4541b96ccd42957eb74ff9f7728ebf (diff) | |
download | busybox-cfb53dfd5ec455bc0299654d4bb06b30dd5d1373.zip busybox-cfb53dfd5ec455bc0299654d4bb06b30dd5d1373.tar.gz |
- include proper prototypes in libunarchive.
Diffstat (limited to 'archival/libunarchive/decompress_bunzip2.c')
-rw-r--r-- | archival/libunarchive/decompress_bunzip2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archival/libunarchive/decompress_bunzip2.c b/archival/libunarchive/decompress_bunzip2.c index 88d88b8..3d07d9e 100644 --- a/archival/libunarchive/decompress_bunzip2.c +++ b/archival/libunarchive/decompress_bunzip2.c @@ -24,7 +24,7 @@ I would ask that anyone benefiting from this work, especially those using it in commercial products, consider making a donation to my local non-profit hospice organization (www.hospiceacadiana.com) in the name of - the woman I loved, Toni W. Hagan, who passed away Feb. 12, 2003. + the woman I loved, Toni W. Hagan, who passed away Feb. 12, 2003. Manuel */ @@ -38,6 +38,8 @@ #include "libbb.h" +#include "unarchive.h" + /* Constants for Huffman coding */ #define MAX_GROUPS 6 #define GROUP_SIZE 50 /* 64 would have been more efficient */ |