16 lines
256 B
C++
16 lines
256 B
C++
/*! \file
|
|
* \brief General \ref System functionality (\ref System::reboot "reboot")
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
/*! \brief General System functions
|
|
*/
|
|
namespace System {
|
|
|
|
/*! \brief Perform a reboot
|
|
*/
|
|
void reboot();
|
|
} // namespace System
|