8 lines
139 B
Text
8 lines
139 B
Text
#include <unistd.h>
|
|
#include <sys/reboot.h>
|
|
|
|
/* sysdep: -std reboot */
|
|
|
|
int reboot_system(int what) {
|
|
return(reboot(what, (char *)0));
|
|
}
|