#include <sys/reboot.h>
#include <unistd.h>
int main() {
reboot(RB_DISABLE_CAD);
}
1 2 3 4 5 | #include <sys/reboot.h> #include <unistd.h> int main() { reboot(RB_DISABLE_CAD); } |
#include <sys/reboot.h>
#include <unistd.h>
int main() {
reboot(RB_DISABLE_CAD);
}
1 2 3 4 5 | #include <sys/reboot.h> #include <unistd.h> int main() { reboot(RB_DISABLE_CAD); } |