diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dxvk.c | 2 | ||||
-rw-r--r-- | src/lutris.h | 2 | ||||
-rw-r--r-- | src/net.c | 2 | ||||
-rw-r--r-- | src/net.h | 2 | ||||
-rw-r--r-- | src/wine.c | 2 |
5 files changed, 5 insertions, 5 deletions
@@ -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, @@ -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" @@ -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); @@ -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> |