diff options
Diffstat (limited to 'src/misc/bzlib/huffman.c')
-rw-r--r-- | src/misc/bzlib/huffman.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/misc/bzlib/huffman.c b/src/misc/bzlib/huffman.c index 87e79e38..0f367d62 100644 --- a/src/misc/bzlib/huffman.c +++ b/src/misc/bzlib/huffman.c @@ -21,6 +21,9 @@ #include "bzlib_private.h" +ABC_NAMESPACE_IMPL_START + + /*---------------------------------------------------*/ #define WEIGHTOF(zz0) ((zz0) & 0xffffff00) #define DEPTHOF(zz1) ((zz1) & 0x000000ff) @@ -203,3 +206,5 @@ void BZ2_hbCreateDecodeTables ( Int32 *limit, /*-------------------------------------------------------------*/ /*--- end huffman.c ---*/ /*-------------------------------------------------------------*/ + +ABC_NAMESPACE_IMPL_END |