poweroff.c 271 B

12345678910111213
  1. /* Userspace is for the weak. Die.
  2. * https://stackoverflow.com/questions/28812514/how-to-shutdown-linux-using-c-or-qt-without-call-to-system
  3. **/
  4. #include <stdio.h>
  5. #include <sys/reboot.h>
  6. #include <unistd.h>
  7. int main(void) {
  8. puts(__FILE__);
  9. reboot(RB_POWER_OFF);
  10. }