]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix a few missing includes
authorLennart Poettering <lennart@poettering.net>
Wed, 10 Oct 2018 15:44:09 +0000 (17:44 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 26 Nov 2018 17:09:01 +0000 (18:09 +0100)
src/import/import-common.h
src/shared/machine-image.h
src/shared/verbs.h

index 99ac5fe970d9c40a795939c075b37eab678deab2..34ed829de01930c2746bf76d13259bb3803e1457 100644 (file)
@@ -1,6 +1,8 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 #pragma once
 
+#include <sys/types.h>
+
 int import_make_read_only_fd(int fd);
 int import_make_read_only(const char *path);
 
index 2e38522acd973072fdc0e400c619d1cbdeea0217..de06147e7bf3e2b56499995dc29db3bee6af5666 100644 (file)
@@ -4,6 +4,8 @@
 #include <stdbool.h>
 #include <stdint.h>
 
+#include "sd-id128.h"
+
 #include "hashmap.h"
 #include "lockfile-util.h"
 #include "macro.h"
index e174255a76d6544baaa2481052f27a9fbbfd3750..010c0df3fdc97f7d05bc9d9f8030e8cd34319be7 100644 (file)
@@ -1,6 +1,8 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 #pragma once
 
+#include <stdbool.h>
+
 #define VERB_ANY ((unsigned) -1)
 
 typedef enum VerbFlags {