compiler/clib: Do not call __arosc_get_ctype() for each call to a ctype.h macro.
[AROS.git] / arch / all-mingw32 / exec / coldreboot.c
blob5a165b65d41379ff8fbd6d2a7d6ed54fe3be9f5e
1 /*
2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: ColdReboot() - Reboot the computer, Windows-hosted implementation.
6 Lang: english
7 */
9 #include <aros/debug.h>
11 #include "exec_intern.h"
13 AROS_LH0(void, ColdReboot,
14 struct ExecBase *, SysBase, 121, Exec)
16 AROS_LIBFUNC_INIT
18 Disable();
19 PD(SysBase).Reboot(TRUE);
20 Enable();
22 AROS_LIBFUNC_EXIT
23 } /* ColdReboot() */