mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
16 lines
157 B
C++
16 lines
157 B
C++
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
|
||
|
int main(int, char**)
|
||
|
{
|
||
|
if (reboot() < 0){
|
||
|
perror("reboot");
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
|