21 lines
433 B
C
21 lines
433 B
C
|
/***********************************************************************
|
||
|
*
|
||
|
* 2006 Nico Schottelius (nico-cinit //@\\ schottelius.org)
|
||
|
*
|
||
|
* part of cLinux/cinit
|
||
|
*
|
||
|
* os specific functions
|
||
|
*/
|
||
|
|
||
|
#ifndef CINIT_OS_HEADER
|
||
|
#define CINIT_OS_HEADER
|
||
|
|
||
|
/*****************************************************************************
|
||
|
* Functions
|
||
|
*/
|
||
|
void cinit_halt(void);
|
||
|
void cinit_poweroff(void);
|
||
|
void cinit_reboot(void);
|
||
|
|
||
|
#endif
|