mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
12 lines
227 B
C
12 lines
227 B
C
/* https://github.com/cirosantilli/linux-kernel-module-cheat#poweroff-out */
|
|
|
|
#define _XOPEN_SOURCE 700
|
|
#include <stdio.h>
|
|
#include <sys/reboot.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void) {
|
|
puts(__FILE__);
|
|
reboot(RB_POWER_OFF);
|
|
}
|