diff options
Diffstat (limited to 'sutils/reboot.c')
-rw-r--r-- | sutils/reboot.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sutils/reboot.c b/sutils/reboot.c index 2909d102..7844ba06 100644 --- a/sutils/reboot.c +++ b/sutils/reboot.c @@ -19,13 +19,16 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <hurd.h> #include <sys/reboot.h> -#include <hurd/startup.h> +#include <unistd.h> +#include <stdio.h> -main () +int +main (void) { reboot (0); + perror ("reboot"); + return 1; } |