07955c83c6
* Finally bring syscall.h up to speed and include all syscalls in the syscall module of the C library. * Remove the third-party obfuscated C demos (we have nyancat, good enough) * Fix userspace apps to build without complaining about undeclared strtok_r by disable __STRICT_ANSI__ * Fix .eh_frame by including the proper stuff with libgcc.
16 lines
250 B
C
16 lines
250 B
C
/*
|
|
* reboot
|
|
*
|
|
* Reboot the system.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <syscall.h>
|
|
|
|
int main(int argc, char ** argv) {
|
|
printf("uid is %d\n", syscall_getuid());
|
|
if (syscall_reboot() < 0) {
|
|
printf("%s: need to be root.\n", argv[0]);
|
|
}
|
|
return 1;
|
|
}
|