diff options
Diffstat (limited to 'Build/source/texk/dvisvgm/dvisvgm-src/libs/brotli/enc/bit_cost.c')
-rw-r--r-- | Build/source/texk/dvisvgm/dvisvgm-src/libs/brotli/enc/bit_cost.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Build/source/texk/dvisvgm/dvisvgm-src/libs/brotli/enc/bit_cost.c b/Build/source/texk/dvisvgm/dvisvgm-src/libs/brotli/enc/bit_cost.c index 1f3f7ad5c90..6b7c904cede 100644 --- a/Build/source/texk/dvisvgm/dvisvgm-src/libs/brotli/enc/bit_cost.c +++ b/Build/source/texk/dvisvgm/dvisvgm-src/libs/brotli/enc/bit_cost.c @@ -6,28 +6,29 @@ /* Functions to estimate the bit cost of Huffman trees. */ -#include "./bit_cost.h" +#include "bit_cost.h" + +#include <brotli/types.h> #include "../common/constants.h" #include "../common/platform.h" -#include <brotli/types.h> -#include "./fast_log.h" -#include "./histogram.h" +#include "fast_log.h" +#include "histogram.h" #if defined(__cplusplus) || defined(c_plusplus) extern "C" { #endif #define FN(X) X ## Literal -#include "./bit_cost_inc.h" /* NOLINT(build/include) */ +#include "bit_cost_inc.h" /* NOLINT(build/include) */ #undef FN #define FN(X) X ## Command -#include "./bit_cost_inc.h" /* NOLINT(build/include) */ +#include "bit_cost_inc.h" /* NOLINT(build/include) */ #undef FN #define FN(X) X ## Distance -#include "./bit_cost_inc.h" /* NOLINT(build/include) */ +#include "bit_cost_inc.h" /* NOLINT(build/include) */ #undef FN #if defined(__cplusplus) || defined(c_plusplus) |