poweroff.c 187 B

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