diff options
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/rangecoder/price_table_init.c (renamed from src/liblzma/rangecoder/range_encoder.c) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/liblzma/rangecoder/range_encoder.c b/src/liblzma/rangecoder/price_table_init.c index f03bd873..4714dfd6 100644 --- a/src/liblzma/rangecoder/range_encoder.c +++ b/src/liblzma/rangecoder/price_table_init.c @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -/// \file range_encoder.c +/// \file price_table_init.c /// \brief Static initializations for the range encoder's prices array // // Copyright (C) 1999-2006 Igor Pavlov @@ -18,7 +18,9 @@ // /////////////////////////////////////////////////////////////////////////////// -#include "range_encoder.h" +#ifdef HAVE_CONFIG_H +# include "range_encoder.h" +#endif #define NUM_BITS (BIT_MODEL_TOTAL_BITS - MOVE_REDUCING_BITS) |