aboutsummaryrefslogtreecommitdiff
path: root/json
diff options
context:
space:
mode:
authorjacopo grandi <jak.sk8@hotmail.it>2021-03-02 09:44:19 +0100
committerjacopo grandi <jak.sk8@hotmail.it>2021-03-02 09:44:19 +0100
commit879fb2adefadbc5f38711cd8f01bcc4cee053e3d (patch)
tree63d9841f0dd321978714dd5839cb6f8c3c8df57e /json
parent2f345b1d6e130177efe4fa47d5b2bd11f352ce85 (diff)
i hate cmake, g++, ld, collect2, cc1, x86_64-w64-mingw32
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