Files
2019-07-07 00:00:01 +00:00

10 lines
187 B
C

/* https://cirosantilli.com/linux-kernel-module-cheat#poweroff-out */
#define _XOPEN_SOURCE 700
#include <sys/reboot.h>
#include <unistd.h>
int main(void) {
reboot(RB_POWER_OFF);
}