From c1ff5570f4a04bb9aedea444c12dce81679224ec Mon Sep 17 00:00:00 2001 From: Thomas Hindoe Paaboel Andersen Date: Tue, 10 Feb 2015 12:56:53 +0100 Subject: [PATCH] Add missing includes in header files This fixes various issues found by globally reordering the include sections of all .c files. --- src/boot/boot-loader.h | 2 ++ src/core/cgroup.h | 3 +++ src/core/execute.h | 1 + src/core/path.h | 1 + src/core/unit.h | 2 +- src/journal/journal-internal.h | 1 + src/libsystemd-network/dhcp-identifier.h | 1 + src/libsystemd/sd-bus/bus-bloom.h | 2 ++ src/libsystemd/sd-bus/bus-gvariant.h | 2 ++ src/libsystemd/sd-bus/bus-type.h | 1 + src/libsystemd/sd-bus/busctl-introspect.h | 1 + src/shared/btrfs-ctree.h | 1 + src/shared/clock-util.h | 2 ++ src/shared/env-util.h | 2 ++ src/shared/ptyfwd.h | 2 ++ src/shared/uid-range.h | 1 + 16 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/boot/boot-loader.h b/src/boot/boot-loader.h index 08827c3..b3fcdee 100644 --- a/src/boot/boot-loader.h +++ b/src/boot/boot-loader.h @@ -21,5 +21,7 @@ along with systemd; If not, see . ***/ +#include "boot.h" + int boot_loader_read_entries(struct boot_info *info); int boot_loader_find_active_entry(struct boot_info *info, const char *loader_active); diff --git a/src/core/cgroup.h b/src/core/cgroup.h index 7150e5e..8fa851d 100644 --- a/src/core/cgroup.h +++ b/src/core/cgroup.h @@ -21,7 +21,10 @@ along with systemd; If not, see . ***/ +#include + #include "list.h" +#include "time-util.h" typedef struct CGroupContext CGroupContext; typedef struct CGroupDeviceAllow CGroupDeviceAllow; diff --git a/src/core/execute.h b/src/core/execute.h index 153867c..6e0c9fa 100644 --- a/src/core/execute.h +++ b/src/core/execute.h @@ -199,6 +199,7 @@ struct ExecContext { }; #include "cgroup.h" +#include "cgroup-util.h" struct ExecParameters { char **argv; diff --git a/src/core/path.h b/src/core/path.h index d2e91d7..0d36aab 100644 --- a/src/core/path.h +++ b/src/core/path.h @@ -22,6 +22,7 @@ ***/ typedef struct Path Path; +typedef struct PathSpec PathSpec; #include "unit.h" #include "mount.h" diff --git a/src/core/unit.h b/src/core/unit.h index 53b8a7f..291bc77 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -259,8 +259,8 @@ typedef enum UnitSetPropertiesMode { #include "automount.h" #include "swap.h" #include "timer.h" -#include "path.h" #include "slice.h" +#include "path.h" #include "scope.h" struct UnitVTable { diff --git a/src/journal/journal-internal.h b/src/journal/journal-internal.h index e99050c..b51ecdb 100644 --- a/src/journal/journal-internal.h +++ b/src/journal/journal-internal.h @@ -32,6 +32,7 @@ #include "hashmap.h" #include "set.h" #include "journal-file.h" +#include "sd-journal.h" typedef struct Match Match; typedef struct Location Location; diff --git a/src/libsystemd-network/dhcp-identifier.h b/src/libsystemd-network/dhcp-identifier.h index cbec03e..7f44d25 100644 --- a/src/libsystemd-network/dhcp-identifier.h +++ b/src/libsystemd-network/dhcp-identifier.h @@ -23,6 +23,7 @@ #include +#include "macro.h" #include "sparse-endian.h" #include "sd-id128.h" diff --git a/src/libsystemd/sd-bus/bus-bloom.h b/src/libsystemd/sd-bus/bus-bloom.h index 0dad5db..96c82d7 100644 --- a/src/libsystemd/sd-bus/bus-bloom.h +++ b/src/libsystemd/sd-bus/bus-bloom.h @@ -21,6 +21,8 @@ along with systemd; If not, see . ***/ +#include +#include #include /* diff --git a/src/libsystemd/sd-bus/bus-gvariant.h b/src/libsystemd/sd-bus/bus-gvariant.h index b4bd2a5..fdf5335 100644 --- a/src/libsystemd/sd-bus/bus-gvariant.h +++ b/src/libsystemd/sd-bus/bus-gvariant.h @@ -21,6 +21,8 @@ along with systemd; If not, see . ***/ +#include "macro.h" + int bus_gvariant_get_size(const char *signature) _pure_; int bus_gvariant_get_alignment(const char *signature) _pure_; int bus_gvariant_is_fixed_size(const char *signature) _pure_; diff --git a/src/libsystemd/sd-bus/bus-type.h b/src/libsystemd/sd-bus/bus-type.h index 581e8d5..0e50783 100644 --- a/src/libsystemd/sd-bus/bus-type.h +++ b/src/libsystemd/sd-bus/bus-type.h @@ -23,6 +23,7 @@ #include +#include "macro.h" #include "sd-bus.h" #include "sd-bus-protocol.h" diff --git a/src/libsystemd/sd-bus/busctl-introspect.h b/src/libsystemd/sd-bus/busctl-introspect.h index 9bea437..d6b4cf0 100644 --- a/src/libsystemd/sd-bus/busctl-introspect.h +++ b/src/libsystemd/sd-bus/busctl-introspect.h @@ -22,6 +22,7 @@ ***/ #include +#include typedef struct XMLIntrospectOps { int (*on_path)(const char *path, void *userdata); diff --git a/src/shared/btrfs-ctree.h b/src/shared/btrfs-ctree.h index 7bdf3fe..8b6f1ab 100644 --- a/src/shared/btrfs-ctree.h +++ b/src/shared/btrfs-ctree.h @@ -2,6 +2,7 @@ #pragma once +#include "macro.h" #include "sparse-endian.h" /* Stolen from btrfs' ctree.h */ diff --git a/src/shared/clock-util.h b/src/shared/clock-util.h index 7ed371a..198a7b2 100644 --- a/src/shared/clock-util.h +++ b/src/shared/clock-util.h @@ -21,6 +21,8 @@ along with systemd; If not, see . ***/ +#include "util.h" + int clock_is_localtime(void); int clock_set_timezone(int *min); int clock_reset_timewarp(void); diff --git a/src/shared/env-util.h b/src/shared/env-util.h index fb3a52b..618441a 100644 --- a/src/shared/env-util.h +++ b/src/shared/env-util.h @@ -24,6 +24,8 @@ #include #include +#include "macro.h" + bool env_name_is_valid(const char *e); bool env_value_is_valid(const char *e); bool env_assignment_is_valid(const char *e); diff --git a/src/shared/ptyfwd.h b/src/shared/ptyfwd.h index d65b66a..d3e229b 100644 --- a/src/shared/ptyfwd.h +++ b/src/shared/ptyfwd.h @@ -23,7 +23,9 @@ #include #include +#include +#include "util.h" #include "sd-event.h" typedef struct PTYForward PTYForward; diff --git a/src/shared/uid-range.h b/src/shared/uid-range.h index d3dac8d..45335e9 100644 --- a/src/shared/uid-range.h +++ b/src/shared/uid-range.h @@ -21,6 +21,7 @@ along with systemd; If not, see . ***/ +#include #include typedef struct UidRange { -- 2.7.4