aboutsummaryrefslogtreecommitdiff
path: root/c/common
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2021-09-08 09:18:45 +0200
committerGitHub <noreply@github.com>2021-09-08 09:18:45 +0200
commit62662f87cdd96deda90ac817de94e3c4af75226a (patch)
tree6052197cad3d5c40792f2acdc5b8521efd9f4b67 /c/common
parent698e3a7f9d3000fa44174f5be415bf713f71bd0e (diff)
downloadbrotli-62662f87cdd96deda90ac817de94e3c4af75226a.zip
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.gz
brotli-62662f87cdd96deda90ac817de94e3c4af75226a.tar.bz2
Strip "./" in includes (#925)
Co-authored-by: Eugene Kliuchnikov <eustas@chromium.org>
Diffstat (limited to 'c/common')
-rw-r--r--c/common/constants.c2
-rw-r--r--c/common/constants.h2
-rw-r--r--c/common/context.c2
-rw-r--r--c/common/dictionary.c4
-rw-r--r--c/common/platform.c2
-rw-r--r--c/common/shared_dictionary.c6
-rw-r--r--c/common/shared_dictionary_internal.h4
-rw-r--r--c/common/transform.c2
8 files changed, 12 insertions, 12 deletions
diff --git a/c/common/constants.c b/c/common/constants.c
index 6bad9f6..89866b1 100644
--- a/c/common/constants.c
+++ b/c/common/constants.c
@@ -4,7 +4,7 @@
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
-#include "./constants.h"
+#include "constants.h"
const BrotliPrefixCodeRange
_kBrotliPrefixCodeRanges[BROTLI_NUM_BLOCK_LEN_SYMBOLS] = {
diff --git a/c/common/constants.h b/c/common/constants.h
index e848195..433c7b2 100644
--- a/c/common/constants.h
+++ b/c/common/constants.h
@@ -12,7 +12,7 @@
#ifndef BROTLI_COMMON_CONSTANTS_H_
#define BROTLI_COMMON_CONSTANTS_H_
-#include "./platform.h"
+#include "platform.h"
#include <brotli/port.h>
#include <brotli/types.h>
diff --git a/c/common/context.c b/c/common/context.c
index 2c2dceb..7f9c958 100644
--- a/c/common/context.c
+++ b/c/common/context.c
@@ -1,4 +1,4 @@
-#include "./context.h"
+#include "context.h"
#include <brotli/types.h>
diff --git a/c/common/dictionary.c b/c/common/dictionary.c
index f9e3041..e86d417 100644
--- a/c/common/dictionary.c
+++ b/c/common/dictionary.c
@@ -4,8 +4,8 @@
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
-#include "./dictionary.h"
-#include "./platform.h"
+#include "dictionary.h"
+#include "platform.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
diff --git a/c/common/platform.c b/c/common/platform.c
index aef39e9..acdc452 100644
--- a/c/common/platform.c
+++ b/c/common/platform.c
@@ -6,7 +6,7 @@
#include <stdlib.h>
-#include "./platform.h"
+#include "platform.h"
#include <brotli/types.h>
/* Default brotli_alloc_func */
diff --git a/c/common/shared_dictionary.c b/c/common/shared_dictionary.c
index c7d05c5..20ba73a 100644
--- a/c/common/shared_dictionary.c
+++ b/c/common/shared_dictionary.c
@@ -12,9 +12,9 @@
#include <stdlib.h> /* malloc, free */
#include <stdio.h>
-#include "./dictionary.h"
-#include "./platform.h"
-#include "./shared_dictionary_internal.h"
+#include "dictionary.h"
+#include "platform.h"
+#include "shared_dictionary_internal.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
diff --git a/c/common/shared_dictionary_internal.h b/c/common/shared_dictionary_internal.h
index a2b76ee..87ab13b 100644
--- a/c/common/shared_dictionary_internal.h
+++ b/c/common/shared_dictionary_internal.h
@@ -9,9 +9,9 @@
#ifndef BROTLI_COMMON_SHARED_DICTIONARY_INTERNAL_H_
#define BROTLI_COMMON_SHARED_DICTIONARY_INTERNAL_H_
-#include "./dictionary.h"
+#include "dictionary.h"
#include <brotli/shared_dictionary.h>
-#include "./transform.h"
+#include "transform.h"
#include <brotli/types.h>
#if defined(__cplusplus) || defined(c_plusplus)
diff --git a/c/common/transform.c b/c/common/transform.c
index f8fa433..49455fc 100644
--- a/c/common/transform.c
+++ b/c/common/transform.c
@@ -4,7 +4,7 @@
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
-#include "./transform.h"
+#include "transform.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {