reboot-stub.c (286B)
- // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
- // SPDX-License-Identifier: MPL-2.0
- #define _GNU_SOURCE
- #include <sys/reboot.h> // reboot, RB_*
- #include <stdio.h> // perror
- int
- main(void)
- {
- reboot(RB_AUTOBOOT);
- perror("reboot");
- return 1;
- }