diff options
author | Matija Skala <mskala@gmx.com> | 2017-05-19 16:01:35 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-05-19 16:01:35 +0200 |
commit | fe9938888bd72934b8dc7816f20dee8e0991e8fc (patch) | |
tree | 429cdfc3f49bbdc28e164c729785a805d88c949a /src/machine | |
parent | core: open /proc/self/mountinfo early to allow mounts over /proc (#5985) (diff) | |
download | systemd-fe9938888bd72934b8dc7816f20dee8e0991e8fc.tar.xz systemd-fe9938888bd72934b8dc7816f20dee8e0991e8fc.zip |
Fix includes (#5980)
Needed on musl.
Diffstat (limited to 'src/machine')
-rw-r--r-- | src/machine/image-dbus.c | 1 | ||||
-rw-r--r-- | src/machine/operation.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/machine/image-dbus.c b/src/machine/image-dbus.c index 2f69e2c7b7..18e0e34896 100644 --- a/src/machine/image-dbus.c +++ b/src/machine/image-dbus.c @@ -17,6 +17,7 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <sys/file.h> #include <sys/mount.h> #include "alloc-util.h" diff --git a/src/machine/operation.c b/src/machine/operation.c index f7d5310f44..9b2d13dde1 100644 --- a/src/machine/operation.c +++ b/src/machine/operation.c @@ -17,6 +17,8 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include <sys/wait.h> + #include "alloc-util.h" #include "fd-util.h" #include "operation.h" |