The header raw-reboot.h is only used with reboot-util. Let's merge them.
+++ /dev/null
-/* SPDX-License-Identifier: LGPL-2.1-or-later */
-#pragma once
-
-#include <linux/reboot.h>
-#include <sys/reboot.h>
-#include <sys/syscall.h>
-#include <unistd.h>
-
-/* glibc defines the reboot() API call, which is a wrapper around the system call of the same name, but without the
- * extra "arg" parameter. Since we need that parameter for some calls, let's add a "raw" wrapper that is defined the
- * same way, except it takes the additional argument. */
-
-static inline int raw_reboot(int cmd, const void *arg) {
- return (int) syscall(SYS_reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd, arg);
-}
/* SPDX-License-Identifier: LGPL-2.1-or-later */
-#include <sys/reboot.h>
#include <unistd.h>
#include "ansi-color.h"
#include "emergency-action.h"
#include "manager.h"
-#include "raw-reboot.h"
#include "reboot-util.h"
#include "special.h"
#include "string-table.h"
/* SPDX-License-Identifier: LGPL-2.1-or-later */
-#include <linux/reboot.h>
#include <stdint.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
-#include <sys/reboot.h>
+#include <sys/syscall.h>
#include <unistd.h>
#if HAVE_XENCTRL
#include "fileio.h"
#include "log.h"
#include "proc-cmdline.h"
-#include "raw-reboot.h"
#include "reboot-util.h"
#include "string-util.h"
#include "umask-util.h"
#include "utf8.h"
#include "virt.h"
+int raw_reboot(int cmd, const void *arg) {
+ return syscall(SYS_reboot, LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd, arg);
+}
+
bool reboot_parameter_is_valid(const char *parameter) {
assert(parameter);
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
+#include <linux/reboot.h> /* IWYU pragma: export */
+#include <sys/reboot.h> /* IWYU pragma: export */
+
#include "forward.h"
+/* glibc defines the reboot() API call, which is a wrapper around the system call of the same name, but
+ * without the extra "arg" parameter. Since we need that parameter for some calls, let's add a "raw" wrapper
+ * that is defined the same way, except it takes the additional argument. */
+int raw_reboot(int cmd, const void *arg);
+
bool reboot_parameter_is_valid(const char *parameter);
int update_reboot_parameter_and_warn(const char *parameter, bool keep);
***/
#include <getopt.h>
-#include <linux/reboot.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <sys/mount.h>
-#include <sys/reboot.h>
#include <sys/stat.h>
#include <unistd.h>
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#include <fnmatch.h>
-#include <sys/reboot.h>
#include <unistd.h>
#include "sd-bus.h"