From ebc70ee4c49c1d753f074bc17d08210804d7bf36 Mon Sep 17 00:00:00 2001 From: josch Date: Thu, 25 Sep 2014 19:43:38 +0200 Subject: [PATCH] fix includes --- mfapi/apicalls/device_get_changes.c | 3 +-- mfapi/apicalls/device_get_status.c | 1 + mfapi/apicalls/folder_get_content.c | 4 ++-- mfshell/commands/changes.c | 1 + mfshell/commands/status.c | 1 + 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/mfapi/apicalls/device_get_changes.c b/mfapi/apicalls/device_get_changes.c index a3222ff..d90ed70 100644 --- a/mfapi/apicalls/device_get_changes.c +++ b/mfapi/apicalls/device_get_changes.c @@ -21,11 +21,10 @@ #include #include #include +#include #include "../../utils/http.h" #include "../../utils/json.h" -#include "../../utils/strings.h" -#include "../folder.h" #include "../mfconn.h" #include "../apicalls.h" // IWYU pragma: keep diff --git a/mfapi/apicalls/device_get_status.c b/mfapi/apicalls/device_get_status.c index 7cb55a8..f2d13dd 100644 --- a/mfapi/apicalls/device_get_status.c +++ b/mfapi/apicalls/device_get_status.c @@ -20,6 +20,7 @@ #include #include #include +#include #include "../../utils/http.h" #include "../../utils/json.h" diff --git a/mfapi/apicalls/folder_get_content.c b/mfapi/apicalls/folder_get_content.c index e0e21a9..1d0c315 100644 --- a/mfapi/apicalls/folder_get_content.c +++ b/mfapi/apicalls/folder_get_content.c @@ -20,14 +20,14 @@ #define _XOPEN_SOURCE // for strptime #include #include -#include #include #include +#include #include "../../utils/http.h" #include "../../utils/json.h" -#include "../../utils/strings.h" #include "../folder.h" +#include "../file.h" #include "../mfconn.h" #include "../apicalls.h" // IWYU pragma: keep diff --git a/mfshell/commands/changes.c b/mfshell/commands/changes.c index c043c62..3110608 100644 --- a/mfshell/commands/changes.c +++ b/mfshell/commands/changes.c @@ -19,6 +19,7 @@ #include #include +#include #include "../../mfapi/apicalls.h" #include "../mfshell.h" diff --git a/mfshell/commands/status.c b/mfshell/commands/status.c index a7e3ebf..9aa8cad 100644 --- a/mfshell/commands/status.c +++ b/mfshell/commands/status.c @@ -19,6 +19,7 @@ #include #include +#include #include "../../mfapi/apicalls.h" #include "../mfshell.h"