poweroff.c 382 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. * BusyBox's /sbin/poweroff is under init/halt.c, but it does extra crap like killing init, so I don't trust it. */
  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. }