summaryrefslogtreecommitdiff
path: root/sutils/halt.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-11-17 01:29:18 +0000
committerRoland McGrath <roland@gnu.org>1994-11-17 01:29:18 +0000
commita72530d52c9307a5c7c3063ed736ab8e2983fcfc (patch)
treee94755842b0a2c4b444c3d8d879ac3766cf7ce97 /sutils/halt.c
parent48ab62131d21c50e49dcae03fd1fefac234ade47 (diff)
Include unistd.h, stdio.h, not hurd/anything.
(main): If reboot returns, give error message and return 1.
Diffstat (limited to 'sutils/halt.c')
-rw-r--r--sutils/halt.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sutils/halt.c b/sutils/halt.c
index e490bc09..2d9c1a18 100644
--- a/sutils/halt.c
+++ b/sutils/halt.c
@@ -18,15 +18,15 @@
along with this program; if not, write to the Free Software
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 (RB_HALT);
+ perror ("reboot");
+ return 1;
}
-
-
-
-