added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / c / Reboot.c
blob0a0ab8656aca54c3cc224b35f275528a50d0a3ab
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;