aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dxvk.c2
-rw-r--r--src/lutris.h2
-rw-r--r--src/net.c2
-rw-r--r--src/net.h2
-rw-r--r--src/wine.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/dxvk.c b/src/dxvk.c
index cf4dcb3..f219455 100644
--- a/src/dxvk.c
+++ b/src/dxvk.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <string.h>
-#include <json-c/json.h>
+#include <json.h>
#include <libgen.h>
#include <linux/limits.h>
diff --git a/src/lutris.h b/src/lutris.h
index f3db00f..f3f648d 100644
--- a/src/lutris.h
+++ b/src/lutris.h
@@ -1,7 +1,7 @@
#ifndef LUTRIS_H
#define LUTRIS_H
-#include <json-c/json.h>
+#include <json.h>
enum keyword {
MOVE = 0,
diff --git a/src/net.c b/src/net.c
index 5fb1093..bacfc8b 100644
--- a/src/net.c
+++ b/src/net.c
@@ -4,7 +4,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <curl/curl.h>
-#include <json-c/json.h>
+#include <json.h>
#include "net.h"
#include "common.h"
diff --git a/src/net.h b/src/net.h
index 5bc5c6e..91f6828 100644
--- a/src/net.h
+++ b/src/net.h
@@ -1,7 +1,7 @@
#ifndef NET_H
#define NET_H
-#include <json-c/json.h>
+#include <json.h>
size_t WriteMemoryCallback(void*, size_t, size_t, void*);
struct MemoryStruct* downloadToRam(const char* URL);
diff --git a/src/wine.c b/src/wine.c
index 596617e..aaaeef9 100644
--- a/src/wine.c
+++ b/src/wine.c
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#include <json-c/json.h>
+#include <json.h>
#include <libgen.h>
#include <unistd.h>
#include <linux/limits.h>