summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/libs/brotli/enc/bit_cost.c
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/dvisvgm/libs/brotli/enc/bit_cost.c')
-rw-r--r--dviware/dvisvgm/libs/brotli/enc/bit_cost.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/dviware/dvisvgm/libs/brotli/enc/bit_cost.c b/dviware/dvisvgm/libs/brotli/enc/bit_cost.c
index 1f3f7ad5c9..6b7c904ced 100644
--- a/dviware/dvisvgm/libs/brotli/enc/bit_cost.c
+++ b/dviware/dvisvgm/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)