summary refs log tree commit diff
path: root/src/tryreboot.c
blob: aefc703822c59dd3222b2946ea2ccc8a67e30b13 (plain) (blame)
1
2
3
4
5
6
#include <unistd.h>
#include <sys/reboot.h>

int main(void) {
  return(reboot(0));
}