r9263@lvps87-230-33-50: verhaegs | 2008-10-04 23:31:42 +0200
[AROS.git] / workbench / c / Reboot.c
blobd5a4738521661f5174487c58099096a6545c5522
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Reboot CLI command
6 Lang: English
7 */
9 /******************************************************************************
11 NAME
13 Reboot
15 SYNOPSIS
17 (N/A)
19 LOCATION
21 Sys:C
23 FUNCTION
25 It reboots the machine ( performs a cold reboot - Coldreboot() )
27 NOTES
29 Any programs and data in memory will be lost and all disk
30 activity will cease. Make sure no disk access is being
31 carried out by your computer.
34 SEE ALSO
36 QuitAROS
38 ******************************************************************************/
40 #include <proto/exec.h>
42 int main() {
43 ColdReboot();
45 return 0;