diff options
Diffstat (limited to 'sutils/reboot.c')
-rw-r--r-- | sutils/reboot.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sutils/reboot.c b/sutils/reboot.c index 7844ba06..54b9b99c 100644 --- a/sutils/reboot.c +++ b/sutils/reboot.c @@ -1,5 +1,5 @@ /* Reboot the system - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1996, 1997, 2002 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -22,15 +22,19 @@ #include <sys/reboot.h> #include <unistd.h> #include <stdio.h> +#include <argp.h> +#include <error.h> +#include <hurd.h> +#include <version.h> + +const char *argp_program_version = STANDARD_HURD_VERSION (reboot); int -main (void) +main (int argc, char *argv[]) { + struct argp argp = {0, 0, 0, "Reboot the system"}; + argp_parse (&argp, argc, argv, 0, 0, 0); reboot (0); - perror ("reboot"); + error (1, errno, "reboot"); return 1; } - - - - |