diff options
Diffstat (limited to 'src/json')
-rw-r--r-- | src/json/hashtable.c | 2 | ||||
-rw-r--r-- | src/json/hashtable.h | 2 | ||||
-rw-r--r-- | src/json/strbuffer.c | 2 | ||||
-rw-r--r-- | src/json/utf.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/json/hashtable.c b/src/json/hashtable.c index 14a59aff1..92d83eea1 100644 --- a/src/json/hashtable.c +++ b/src/json/hashtable.c @@ -5,7 +5,7 @@ * it under the terms of the MIT license. See LICENSE for details. */ -#include "../config.h" +#include "config.h" #include "hashtable.h" typedef struct hashtable_list list_t; diff --git a/src/json/hashtable.h b/src/json/hashtable.h index 30e52daa8..35196b0c0 100644 --- a/src/json/hashtable.h +++ b/src/json/hashtable.h @@ -8,7 +8,7 @@ #ifndef HASHTABLE_H #define HASHTABLE_H -#include "../config.h" +#include "config.h" typedef unsigned int (*key_hash_fn)(const void *key); typedef int (*key_cmp_fn)(const void *key1, const void *key2); diff --git a/src/json/strbuffer.c b/src/json/strbuffer.c index b6afcc248..1ae336d3d 100644 --- a/src/json/strbuffer.c +++ b/src/json/strbuffer.c @@ -5,7 +5,7 @@ * it under the terms of the MIT license. See LICENSE for details. */ -#include "../config.h" +#include "config.h" #include "strbuffer.h" #include "util.h" diff --git a/src/json/utf.c b/src/json/utf.c index b02630812..7635bef8a 100644 --- a/src/json/utf.c +++ b/src/json/utf.c @@ -5,7 +5,7 @@ * it under the terms of the MIT license. See LICENSE for details. */ -#include "../config.h" +#include "config.h" int utf8_encode (int codepoint, char *buffer, int *size) |