1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-01 17:51:22 +03:00

Fix includes (#5980)

Needed on musl.
This commit is contained in:
Matija Skala 2017-05-19 16:01:35 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent ac9de0b379
commit fe9938888b
5 changed files with 7 additions and 1 deletions

View File

@ -17,6 +17,8 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <sys/wait.h>
#include "sd-event.h"
#include "fd-util.h"

View File

@ -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"

View File

@ -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"

View File

@ -19,6 +19,7 @@
#include <linux/veth.h>
#include <net/if.h>
#include <sys/file.h>
#include "libudev.h"
#include "sd-id128.h"

View File

@ -18,9 +18,9 @@
***/
#include <sys/reboot.h>
#include <sys/unistd.h>
#include <sys/wait.h>
#include <sys/prctl.h>
#include <unistd.h>
#include "fd-util.h"
#include "log.h"