aboutsummaryrefslogtreecommitdiff
path: root/json
diff options
context:
space:
mode:
Diffstat (limited to 'json')
-rw-r--r--json/jsonparse.c2
-rw-r--r--json/jsonparse.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/json/jsonparse.c b/json/jsonparse.c
index 65fe3e9..769bc03 100644
--- a/json/jsonparse.c
+++ b/json/jsonparse.c
@@ -3,7 +3,7 @@
#include <string.h>
#include <stdint.h>
-#include <jsonparse.h>
+#include "jsonparse.h"
void substr_token (char *json, char *temp, jsmntok_t *t) {
memcpy(temp, json+t->start, t->end - t->start);
diff --git a/json/jsonparse.h b/json/jsonparse.h
index 87a8960..46f17c1 100644
--- a/json/jsonparse.h
+++ b/json/jsonparse.h
@@ -2,7 +2,7 @@
#define JSONPARSE_H
#define JSMN_STATIC
-#include <jsmn.h>
+#include "jsmn.h"
#define MAXTOKENS 2048