forked from BSB-WS23/mpstubs
15 lines
234 B
C
15 lines
234 B
C
|
/*! \file
|
||
|
* \brief General \ref System functionality (\ref System::reboot "reboot")
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
/*! \brief General System functions
|
||
|
*/
|
||
|
namespace System {
|
||
|
|
||
|
/*! \brief Perform a reboot
|
||
|
*/
|
||
|
void reboot();
|
||
|
} // namespace System
|